SettingsDialog.st
changeset 15523 429b7e780d5a
parent 15487 a0612a561678
child 15566 184cea584be5
child 15607 1e233fdc0cef
--- a/SettingsDialog.st	Tue Mar 10 11:06:41 2015 +0100
+++ b/SettingsDialog.st	Wed Mar 11 06:56:44 2015 +0100
@@ -1534,10 +1534,11 @@
     "/ if any of my subApps has made a change, ask user if he wants
     "/ to write the settings file
     (self realApplications contains:[:app | app didModifySettings]) ifTrue:[
+        "D121136 - Filename doesnot understand allBold"
         (Dialog 
             confirm:(resources 
                         stringWithCRs:'Save your changed settings in the settings file?\(which is: "%1"\\If not saved, these changes only apply to your current session.'
-                        with:self class currentSettingsFilename allBold))
+                        with:self class currentSettingsFilename asString allBold))
         ifTrue:[
             self saveSettingsWithoutAskingForFile.
         ].
@@ -2013,11 +2014,11 @@
 !SettingsDialog class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.127 2015-03-01 14:49:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.128 2015-03-11 05:56:44 ca Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.127 2015-03-01 14:49:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.128 2015-03-11 05:56:44 ca Exp $'
 ! !