Tools__ProfilerInfoItem.st
branchjv
changeset 12125 0c49a3b13e43
parent 12123 4bde08cebd48
child 12128 a7ff7d66ee85
--- a/Tools__ProfilerInfoItem.st	Sun Jan 29 12:56:58 2012 +0000
+++ b/Tools__ProfilerInfoItem.st	Sun Jan 29 15:33:37 2012 +0000
@@ -115,11 +115,12 @@
 methodLabel
 
     ^(self isBlock ifTrue:['[] in '] ifFalse:['']), 
-        self selector , 
-            (' [' , self methodClass nameWithoutPrefix , ']') asText allBold
+        (self selector ? '???') , 
+            (' [' , (self methodClass isNil ifTrue:['???'] ifFalse:[self methodClass  nameWithoutPrefix]) , ']') asText allBold
 
     "Created: / 01-12-2007 / 20:56:29 / janfrog"
     "Modified: / 01-12-2007 / 23:58:35 / janfrog"
+    "Modified: / 18-10-2011 / 17:04:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 packageLabel
@@ -200,9 +201,9 @@
 !ProfilerInfoItem class methodsFor:'documentation'!
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libtool/Tools__ProfilerInfoItem.st,v 1.3 2011/08/02 07:36:00 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libtool/Tools__ProfilerInfoItem.st,v 1.4 2011/10/18 15:29:55 vrany Exp §'
 !
 
 version_SVN
     ^ '$Id: Tools__ProfilerInfoItem.st 7486 2009-10-26 22:06:24Z vranyj1 $'
-! !
\ No newline at end of file
+! !