UserPreferences.st
changeset 6936 4338f7d04178
parent 6935 7cc9b6a59299
child 6937 3054abf221c9
--- a/UserPreferences.st	Mon Dec 16 18:24:57 2002 +0100
+++ b/UserPreferences.st	Tue Dec 17 09:41:52 2002 +0100
@@ -427,6 +427,24 @@
     "Modified: / 13.10.1998 / 15:53:21 / cg"
 !
 
+useNewSettinsApplication
+    "using one application for the settings"
+
+    ^ self at:#useNewSettinsApplication ifAbsentPut:false
+!
+
+useNewSettinsApplication:aBoolean
+    "using one application for the settings"
+
+    self at:#useNewSettinsApplication put:aBoolean
+
+    "
+     UserPreferences current useNewSettinsApplication:true
+    "
+
+    "Modified: / 13.10.1998 / 15:53:21 / cg"
+!
+
 useNewSystemBrowser
     "using new or old system browser"
 
@@ -1801,5 +1819,5 @@
 !UserPreferences class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.89 2002-12-16 17:24:57 penk Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.90 2002-12-17 08:41:52 penk Exp $'
 ! !