Fix default actions for OKButton and CancelButton to #doAccept and
authorStefan Vogel <sv@exept.de>
Wed, 23 Oct 2002 10:55:47 +0200
changeset 1628 bc3362031d0b
parent 1627 e14aa2449e97
child 1629 a79dce7e7045
Fix default actions for OKButton and CancelButton to #doAccept and #doCancel, to be consistent with SimpleDialog.
UISelectionPanel.st
--- a/UISelectionPanel.st	Tue Oct 15 10:42:09 2002 +0200
+++ b/UISelectionPanel.st	Wed Oct 23 10:55:47 2002 +0200
@@ -399,14 +399,14 @@
               #name: 'Button - OK'
               #layout: #(#LayoutFrame 2 0 33 0 127 0 55 0)
               #translateLabel: true
-              #model: #accept
+              #model: #doAccept
             )
            #(#ActionButtonSpec
               #label: 'Cancel'
               #name: 'Button - Cancel'
               #layout: #(#LayoutFrame 2 0 65 0 127 0 87 0)
               #translateLabel: true
-              #model: #cancel
+              #model: #doCancel
             )
            #(#ActionButtonSpec
               #label: 'Help'
@@ -2150,4 +2150,6 @@
 version
     ^ '$Header$'
 ! !
+
 UISelectionPanel initialize!
+UISelectionPanel::UserDefinedGallery initialize!