class: SettingsDialog
authorca
Wed, 11 Mar 2015 06:56:44 +0100
changeset 15523 429b7e780d5a
parent 15522 92e5dd55bfd6
child 15524 c317a60d78b5
class: SettingsDialog changed: #closeRequest D121136 - Filename doesnot understand allBold ... asString
SettingsDialog.st
--- 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 $'
 ! !