#FEATURE by alkurz
authoralkurz
Tue, 02 Jul 2019 14:10:25 +0200
changeset 4287 9e5dc8a88380
parent 4286 add7d9220e53
child 4288 d17422986c53
#FEATURE by alkurz class: ApplicationModel openDialogInterface:withBindings: accepts an already decoded spec as argument
ApplicationModel.st
--- a/ApplicationModel.st	Fri Jun 28 09:04:31 2019 +0200
+++ b/ApplicationModel.st	Tue Jul 02 14:10:25 2019 +0200
@@ -1059,11 +1059,11 @@
     "Modified: 28.2.1997 / 14:07:36 / cg"
 !
 
-openDialogInterface:anInterfaceSymbol withBindings:bindings
+openDialogInterface:anInterfaceSymbolOrSpec withBindings:bindings
     "create an instance of the application and open a view as
      specified by anInterfaceSymbol."
 
-    ^ self new openDialogInterface:anInterfaceSymbol withBindings:bindings
+    ^ self new openDialogInterface:anInterfaceSymbolOrSpec withBindings:bindings
 
     "Modified: 5.9.1995 / 17:54:50 / claus"
     "Modified: 13.1.1997 / 20:55:02 / cg"
@@ -3516,7 +3516,7 @@
     "Modified (comment): / 07-07-2011 / 17:25:26 / cg"
 !
 
-openDialogInterface:aSelector withBindings:bindings
+openDialogInterface:anInterfaceSymbolOrSpec withBindings:bindings
     "open a dialog, given a spec-selector"
 
     "/ Notice: the opened dialog will be technically another instance
@@ -3525,7 +3525,7 @@
 
     ^ SimpleDialog new
         openFor:self
-        interface:aSelector
+        interface:anInterfaceSymbolOrSpec
         withBindings:bindings
 
     "Created: / 28-02-1997 / 14:07:45 / cg"