StandaloneStartup.st
branchjv
changeset 17850 8fa257692c35
parent 17849 30004e7fe0ae
child 17865 598963c6ff8e
--- a/StandaloneStartup.st	Thu Aug 18 10:37:43 2011 +0100
+++ b/StandaloneStartup.st	Sat Aug 20 21:29:33 2011 +0100
@@ -448,9 +448,14 @@
     "answer an application-specific unique uuid.
      This is used as the name of some exclusive OS-resource, which is used to find out,
      if another instance of this application is already running.
-     Under win32, a mutex is used; under unix, an exclusive file in the tempDir could be used."
+     Under win32, a mutex is used; under unix, an exclusive file in the tempDir could be used.
+     If redefined, please return a real UUID (i.e. UUID fromString:'.....') and not a string or 
+     similar possibly conflicting identifier.
+     You can paste a fresh worldwide unique id via the editor's more-misc-paste UUID menuFunction."
     
     self subclassResponsibility
+
+    "Modified (comment): / 19-08-2011 / 01:54:39 / cg"
 !
 
 shouldReuseRunningApplication
@@ -1133,12 +1138,13 @@
 !StandaloneStartup class methodsFor:'documentation'!
 
 version
-    ^ '$Id: StandaloneStartup.st 10669 2011-08-18 09:37:43Z vranyj1 $'
+    ^ '$Id: StandaloneStartup.st 10672 2011-08-20 20:29:33Z vranyj1 $'
 !
 
 version_CVS
-    ^ '§Header: /cvs/stx/stx/libbasic/StandaloneStartup.st,v 1.65 2011/08/11 15:26:10 cg Exp §'
+    ^ '§Header: /cvs/stx/stx/libbasic/StandaloneStartup.st,v 1.66 2011/08/18 23:54:49 cg Exp §'
 ! !
 
 StandaloneStartup initialize!
 
+