BrowserView.st
changeset 3430 028c550c1798
parent 3424 ba8899bfd3fe
child 3433 f433d89e07a4
--- a/BrowserView.st	Fri Nov 16 16:12:10 2001 +0100
+++ b/BrowserView.st	Fri Nov 16 16:12:51 2001 +0100
@@ -12600,15 +12600,15 @@
     ].
 
     compareOffered ifTrue:[
-        labels := #('cancel' 'compare' 'accept' 'continue').
+        labels := #('Cancel' 'Compare' 'Accept' 'Continue').
         values := #(false #compare #accept true).
     ] ifFalse:[
-        labels := #('cancel' 'accept' 'continue').
+        labels := #('Cancel' 'Accept' 'Continue').
         values := #(false #accept true).
     ].
 
     action := OptionBox 
-                  request:(resources at:'text has not been accepted.\\Your modifications will be lost when continuing.') withCRs
+                  request:(resources at:'Text has not been accepted.\\Your modifications will be lost when continuing.') withCRs
                   label:(resources string:'Attention')
                   form:(WarningBox iconBitmap)
                   buttonLabels:(resources array:labels)
@@ -12622,7 +12622,7 @@
     ^ true
 
     "Created: / 24.11.1995 / 10:54:46 / cg"
-    "Modified: / 31.3.1998 / 23:36:55 / cg"
+    "Modified: / 16.11.2001 / 15:33:16 / cg"
 !
 
 classHierarchyOf:aClass level:level do:aBlock using:subclassDictionary removeFrom:remainSet
@@ -14950,6 +14950,6 @@
 !BrowserView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.694 2001-11-16 11:35:31 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/BrowserView.st,v 1.695 2001-11-16 15:12:51 cg Exp $'
 ! !
 BrowserView initialize!