SourceCodeManagerUtilities.st
changeset 3812 173678af0074
parent 3692 ce00ca02e94a
child 3814 466fa886aa65
--- a/SourceCodeManagerUtilities.st	Fri Feb 27 15:17:50 2015 +0100
+++ b/SourceCodeManagerUtilities.st	Fri Feb 27 16:36:18 2015 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2000 eXept Software AG
               All Rights Reserved
@@ -11,6 +13,8 @@
 "
 "{ Package: 'stx:libbasic3' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#SourceCodeManagerUtilities
 	instanceVariableNames:'manager resources confirmNewFiles'
 	classVariableNames:'LastSourceLogMessage LastModule LastPackage YesToAllQuery
@@ -3922,10 +3926,10 @@
 "/            values := #(#cancelAll) , values.
 "/        ].
 
-    DialogBox aboutToOpenBoxNotificationSignal handle:[:ex |
+    Dialog modifyingBoxWith:[:box |
         checkAgainHolder isValueModel ifTrue:[
             dontShowAgain := checkAgainHolder value not asValue.
-            ex box addCheckBoxAtBottom:(resources string:'Do not show this Dialog again (reenable in Launcher).')
+            box addCheckBoxAtBottom:(resources string:'Do not show this Dialog again (reenable in Launcher).')
                 on:dontShowAgain.
         ].
     ] do:[
@@ -4296,10 +4300,10 @@
 !SourceCodeManagerUtilities class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic3/SourceCodeManagerUtilities.st,v 1.316 2014-12-29 15:09:03 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/SourceCodeManagerUtilities.st,v 1.317 2015-02-27 15:36:18 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic3/SourceCodeManagerUtilities.st,v 1.316 2014-12-29 15:09:03 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic3/SourceCodeManagerUtilities.st,v 1.317 2015-02-27 15:36:18 cg Exp $'
 ! !