#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Wed, 26 Feb 2020 15:04:54 +0100
changeset 4452 bc70545786e0
parent 4451 07a866507379
child 4453 d6a8138cfa26
#DOCUMENTATION by cg class: ApplicationModel comment/format in: #openDialogInterface:withBindings: class: ApplicationModel class comment/format in: #openDialogInterface:withBindings:
ApplicationModel.st
--- a/ApplicationModel.st	Sun Feb 23 16:29:45 2020 +0100
+++ b/ApplicationModel.st	Wed Feb 26 15:04:54 2020 +0100
@@ -1059,11 +1059,11 @@
     "Modified: 28.2.1997 / 14:07:36 / cg"
 !
 
-openDialogInterface:anInterfaceSymbolOrSpec withBindings:bindings
+openDialogInterface:anInterfaceSymbolOrSpecOrSpecArray withBindings:bindings
     "create an instance of the application and open a view as
      specified by anInterfaceSymbol."
 
-    ^ self new openDialogInterface:anInterfaceSymbolOrSpec withBindings:bindings
+    ^ self new openDialogInterface:anInterfaceSymbolOrSpecOrSpecArray withBindings:bindings
 
     "Modified: 5.9.1995 / 17:54:50 / claus"
     "Modified: 13.1.1997 / 20:55:02 / cg"
@@ -3919,7 +3919,7 @@
     "Modified (comment): / 07-07-2011 / 17:25:26 / cg"
 !
 
-openDialogInterface:anInterfaceSymbolOrSpec withBindings:bindings
+openDialogInterface:anInterfaceSymbolOrSpecOrSpecArray withBindings:bindings
     "open a dialog, given a spec-selector"
 
     "/ Notice: the opened dialog will be technically another instance
@@ -3928,7 +3928,7 @@
 
     ^ SimpleDialog new
         openFor:self
-        interface:anInterfaceSymbolOrSpec
+        interface:anInterfaceSymbolOrSpecOrSpecArray
         withBindings:bindings
 
     "Created: / 28-02-1997 / 14:07:45 / cg"