ContextInspectorView.st
changeset 10437 27f70bcbf968
parent 9588 dc38e81ec660
child 11513 79e2c470f26f
child 12123 4bde08cebd48
equal deleted inserted replaced
10436:75108fe4b96f 10437:27f70bcbf968
   398     Error 
   398     Error 
   399         handle:[:ex| ]
   399         handle:[:ex| ]
   400         do:[
   400         do:[
   401             (sel isBlock or:[sel isContext]) ifTrue:[
   401             (sel isBlock or:[sel isContext]) ifTrue:[
   402                 items := items , #(
   402                 items := items , #(
   403                                ('Browse Blocks Home'           #browseHome)
   403                                ('Browse Block''s Home'           #browseHome)
   404                       ).
   404                       ).
   405             ].
   405             ].
   406             (sel isMethod) ifTrue:[
   406             (sel isMethod) ifTrue:[
   407                 items := items , #(
   407                 items := items , #(
   408                                ('Browse Methods Class'         #browseMethodsClass)
   408                                ('Browse Method''s Class'         #browseMethodsClass)
   409                          ).
   409                          ).
   410             ].
   410             ].
   411         ].
   411         ].
   412 
   412 
   413     items := items , (self optionalStreamSelectionItems).
   413     items := items , (self optionalStreamSelectionItems).
   443             m disableAll:#(showReferences doNewInspect)
   443             m disableAll:#(showReferences doNewInspect)
   444         ].
   444         ].
   445     ].
   445     ].
   446     ^ m
   446     ^ m
   447 
   447 
   448     "Modified: / 09-02-2007 / 16:11:40 / cg"
   448     "Modified: / 03-08-2011 / 15:02:49 / cg"
   449 ! !
   449 ! !
   450 
   450 
   451 !ContextInspectorView methodsFor:'private'!
   451 !ContextInspectorView methodsFor:'private'!
   452 
   452 
   453 defaultLabel
   453 defaultLabel
   653 ! !
   653 ! !
   654 
   654 
   655 !ContextInspectorView class methodsFor:'documentation'!
   655 !ContextInspectorView class methodsFor:'documentation'!
   656 
   656 
   657 version
   657 version
   658     ^ '$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.74 2010-10-22 10:37:50 cg Exp $'
   658     ^ '$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.75 2011-08-03 13:08:24 cg Exp $'
   659 !
   659 !
   660 
   660 
   661 version_CVS
   661 version_CVS
   662     ^ '$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.74 2010-10-22 10:37:50 cg Exp $'
   662     ^ '$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.75 2011-08-03 13:08:24 cg Exp $'
   663 ! !
   663 ! !