# HG changeset patch # User Claus Gittinger # Date 1476008143 -7200 # Node ID b3f2276a01ebd9a8a45b9951328c86732a2620a5 # Parent 0826ff286ea383840b6a5984d3faa6a08d1fe919 #UI_ENHANCEMENT by cg class: StandaloneStartup changed: #start diff -r 0826ff286ea3 -r b3f2276a01eb StandaloneStartup.st --- a/StandaloneStartup.st Sun Oct 09 12:12:18 2016 +0200 +++ b/StandaloneStartup.st Sun Oct 09 12:15:43 2016 +0200 @@ -1065,6 +1065,15 @@ ! start + "this is the default initial entry into a standalone program. + It checks for any remaining shared libraries/packages which need to be + loaded, looks for any patch-files to be applied + and then enters into main. + On systems, which allow for the same app to be started for multiple documents + (i.e. windows), when clicking on a document), + first check if there is an already running application and tell it to open + a window for the new document." + GenericException handle:[:ex | self verboseInfo:'Error during startup:'. self verboseInfo:ex description. @@ -1105,7 +1114,7 @@ self verboseInfo:'setup Smalltalk'. ]. self setupSmalltalkFromArguments:CommandLineArguments. - self main + self main:CommandLineArguments ]. "Modified: / 04-02-2011 / 00:03:47 / cg"