changed:
authorStefan Vogel <sv@exept.de>
Fri, 10 Aug 2012 12:45:42 +0200
changeset 11739 fe57ab24ba67
parent 11738 4c5d6562a3e9
child 11740 fa674978dc41
changed: #saveSettingsAsDefaultSettings #saveSettingsTo:
SettingsDialog.st
--- a/SettingsDialog.st	Thu Aug 09 11:00:51 2012 +0200
+++ b/SettingsDialog.st	Fri Aug 10 12:45:42 2012 +0200
@@ -448,7 +448,7 @@
 saveSettingsAsDefaultSettings
     | file |
 
-    file := (Filename currentDirectory construct:UserPreferences defaultSettingsFilename) asAbsoluteFilename.
+    file := Filename currentDirectory construct:UserPreferences defaultSettingsFilename.
     self saveSettingsTo:file.
 !
 
@@ -458,7 +458,7 @@
     ] on:StreamError do:[:ex|
         self warn:(self resources 
                 stringWithCRs:'Cannot save settings into: %1\(%2)' 
-                with:(file asString) 
+                with:(file asAbsoluteFilename asString) 
                 with:ex description).
     ]
 !
@@ -1569,11 +1569,11 @@
 !SettingsDialog class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.97 2011-11-25 14:44:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.98 2012-08-10 10:45:42 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.97 2011-11-25 14:44:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/SettingsDialog.st,v 1.98 2012-08-10 10:45:42 stefan Exp $'
 !
 
 version_SVN