YesNoBox.st
changeset 856 1b5b9d753163
parent 796 935b2faf035b
child 943 034b63540f10
--- a/YesNoBox.st	Sat Oct 26 15:19:15 1996 +0200
+++ b/YesNoBox.st	Mon Oct 28 09:58:17 1996 +0100
@@ -17,7 +17,7 @@
 	category:'Views-DialogBoxes'
 !
 
-!YesNoBox  class methodsFor:'documentation'!
+!YesNoBox class methodsFor:'documentation'!
 
 copyright
 "
@@ -148,7 +148,7 @@
 "
 ! !
 
-!YesNoBox  class methodsFor:'instance creation'!
+!YesNoBox class methodsFor:'instance creation'!
 
 title:t yesText:yesString noText:noString
     "return a new YesNoBox with title, and buttonLabels yesString/noString"
@@ -158,7 +158,7 @@
     "Modified: 23.4.1996 / 00:12:48 / cg"
 ! !
 
-!YesNoBox  class methodsFor:'icon bitmap'!
+!YesNoBox class methodsFor:'icon bitmap'!
 
 iconBitmap
     "return the bitmap shown as icon in my instances"
@@ -172,7 +172,7 @@
     ^ RequestBitmap
 ! !
 
-!YesNoBox  class methodsFor:'styles'!
+!YesNoBox class methodsFor:'styles'!
 
 updateStyleCache
     "extract values from the styleSheet and cache them in class variables"
@@ -297,13 +297,15 @@
     buttonPanel horizontalLayout:#fitSpace.  "/ looks better; should it come from the StyleSheet ?
 
     textLabel label:'please Confirm'.
-    okButton logo:(resources at:'yes').
+    okButton label:(resources at:'yes').
 
     abortButton := Button abortButton.
     buttonPanel addSubView:abortButton before:okButton.
-    abortButton logo:(resources at:'no').
+    abortButton label:(resources at:'no').
     abortButton height:(okButton height).
     abortButton model:self; change:#noPressed
+
+    "Modified: 28.10.1996 / 09:57:36 / cg"
 ! !
 
 !YesNoBox methodsFor:'queries'!
@@ -387,8 +389,8 @@
     self hideAndEvaluate:abortAction
 ! !
 
-!YesNoBox  class methodsFor:'documentation'!
+!YesNoBox class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg/YesNoBox.st,v 1.32 1996-07-19 18:47:29 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg/YesNoBox.st,v 1.33 1996-10-28 08:58:17 cg Exp $'
 ! !