AbstractSettingsApplication.st
changeset 8916 1e3dc9435b97
parent 8846 a5a4031ee2cc
child 8922 7caf746db664
--- a/AbstractSettingsApplication.st	Fri Oct 09 16:14:37 2009 +0200
+++ b/AbstractSettingsApplication.st	Fri Oct 09 16:15:37 2009 +0200
@@ -277,7 +277,7 @@
 !
 
 AbstractSettingsApplication subclass:#SystemBrowserSettingsAppl
-	instanceVariableNames:'showAcceptCancelBarInBrowser showSearchBarInBrowser'
+	instanceVariableNames:'showAcceptCancelBarInBrowser useSearchBarInBrowser'
 	classVariableNames:''
 	poolDictionaries:''
 	privateIn:AbstractSettingsApplication
@@ -14312,9 +14312,9 @@
                     extent: (Point 607 25)
                   )
                  (CheckBoxSpec
-                    label: 'Show Search Bar in Editor'
-                    name: 'ShowSearchBarInBrowser'
-                    model: showSearchBarInBrowser
+                    label: 'Use Search Bar in Editor'
+                    name: 'UseSearchBarInBrowser'
+                    model: useSearchBarInBrowser
                     translateLabel: true
                     extent: (Point 607 25)
                   )
@@ -14335,7 +14335,7 @@
         readAspects:
             #( 
                 showAcceptCancelBarInBrowser
-                showSearchBarInBrowser
+                useSearchBarInBrowser
             )
         from:currentUserPrefs.
 !
@@ -14345,7 +14345,7 @@
         writeAspects:
             #( 
                 showAcceptCancelBarInBrowser
-                showSearchBarInBrowser
+                useSearchBarInBrowser
             )
         to:currentUserPrefs.
 ! !
@@ -14360,15 +14360,15 @@
     ^ showAcceptCancelBarInBrowser.
 !
 
-showSearchBarInBrowser
+useSearchBarInBrowser
     "true, if the search-entry fields are shown in the browser itself
      (like in firefox). False if a dialog is to be opened."
 
-    showSearchBarInBrowser isNil ifTrue:[
-        showSearchBarInBrowser := true asValue.
-        showSearchBarInBrowser onChangeSend:#updateModifiedChannel to:self
-    ].
-    ^ showSearchBarInBrowser.
+    useSearchBarInBrowser isNil ifTrue:[
+        useSearchBarInBrowser := true asValue.
+        useSearchBarInBrowser onChangeSend:#updateModifiedChannel to:self
+    ].
+    ^ useSearchBarInBrowser.
 ! !
 
 !AbstractSettingsApplication::SystemBrowserSettingsAppl methodsFor:'help'!
@@ -14384,7 +14384,7 @@
         hasChangedAspectIn:
             #(
                 showAcceptCancelBarInBrowser
-                showSearchBarInBrowser
+                useSearchBarInBrowser
             )
         asComparedTo:currentUserPrefs) ifTrue:[^ true].
     ^ false.
@@ -15335,9 +15335,9 @@
 !AbstractSettingsApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.328 2009-10-02 08:44:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.329 2009-10-09 14:15:37 fm Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.328 2009-10-02 08:44:31 cg Exp $'
-! !
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.329 2009-10-09 14:15:37 fm Exp $'
+! !