extensions.st
changeset 423 60c930c93819
parent 421 0d146090b05a
child 444 a47f43af21d6
--- a/extensions.st	Sat Feb 21 08:46:46 2015 +0000
+++ b/extensions.st	Sat Feb 21 22:54:44 2015 +0000
@@ -90,7 +90,6 @@
     dialog := SmallSense::PackageSelectDialog new.
     dialog title: title.
     dialog filter: [ :pkg | listOfProjects includes: pkg ].
-    dialog updateMatching.
     (initialTextOrNil notNil and:[initialTextOrNil ~~ PackageId noProjectID]) ifTrue:[
         initialTextOrNil isEmpty ifTrue:[
             suggestions size == 1 ifTrue:[
@@ -105,7 +104,8 @@
     ^ dialog open.
 
     "Created: / 25-11-2014 / 13:20:33 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 13-12-2014 / 08:49:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 21-02-2015 / 08:59:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified (comment): / 21-02-2015 / 17:53:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !EditTextView methodsFor:'accessing-behavior'!
@@ -448,26 +448,6 @@
     "Created: / 15-10-2014 / 09:34:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
-!RBProgramNode methodsFor:'inspecting'!
-
-inspector2TabRBParseTreeInspector
-    <inspector2Tab>
-
-    ^ (self newInspector2Tab)
-        label:'Parse Tree (RB)';
-        priority:35;
-        application:
-                [
-                    | src |
-
-                    src := self source.
-                    SmallSense::ParseTreeInspector new node:self source:src.
-                ];
-        yourself
-
-    "Created: / 19-02-2015 / 15:22:01 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-! !
-
 !RBProgramNode methodsFor:'accessing'!
 
 startPosition
@@ -828,7 +808,6 @@
     ].
     dialog := SmallSense::ProtocolSelectDialog new.   
     dialog title: (resources string: question).
-    dialog updateMatching.
     dialog addButtonCancel.   
     dialog addButtonAcceptWithLabel: (resources string: okLabel).  
     initialText notNil ifTrue:[ 
@@ -841,7 +820,7 @@
     "
 
     "Created: / 09-01-2015 / 10:44:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 29-01-2015 / 07:10:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified (comment): / 21-02-2015 / 17:52:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !Tools::NewSystemBrowser class methodsFor:'utilities'!