# HG changeset patch # User Stefan Vogel # Date 1035363347 -7200 # Node ID bc3362031d0ba628a2c3ab1b3ccefdd3e8323153 # Parent e14aa2449e9711959102938c30dc528fa743032c Fix default actions for OKButton and CancelButton to #doAccept and #doCancel, to be consistent with SimpleDialog. diff -r e14aa2449e97 -r bc3362031d0b 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!