Tools__ProfilerInfoItem.st
changeset 10833 166d8d3ab12e
parent 10427 01d47e9f3201
child 12025 6303fd576a49
child 12123 4bde08cebd48
--- a/Tools__ProfilerInfoItem.st	Tue Oct 18 17:11:18 2011 +0200
+++ b/Tools__ProfilerInfoItem.st	Tue Oct 18 17:29:55 2011 +0200
@@ -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,7 +201,7 @@
 !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