No changes, just rename OSXSetAcceleratorFromLabel().
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 4 Nov 2012 23:50:28 +0000 (23:50 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 4 Nov 2012 23:50:28 +0000 (23:50 +0000)
Make the name of the function more general and call it
OSXUpdateAfterLabelChange() as it's supposed to be called whenever the label
changes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72885 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/osx/button.h
src/osx/button_osx.cpp
src/osx/cocoa/button.mm

index d5aff7ab3341f248ef2fe134055b7ccb86206ea0..3f4b2babf16b1e67559c06f4ee9fb5f8b60b202c 100644 (file)
@@ -50,7 +50,7 @@ public:
     virtual bool        OSXHandleClicked( double timestampsec );
 
 #if wxOSX_USE_COCOA
-    void OSXSetAcceleratorFromLabel(const wxString& label);
+    void OSXUpdateAfterLabelChange(const wxString& label);
 #endif
 
 protected:
index b52bf2221b3655a4d21b1c0e46e5ccdbcf9a185b..432f1f08af41592e15e9cf3d31c0fd55dc01aa1c 100644 (file)
@@ -102,7 +102,7 @@ void wxButton::SetLabel(const wxString& label)
 
     wxAnyButton::SetLabel(label);
 #if wxOSX_USE_COCOA
-    OSXSetAcceleratorFromLabel(label);
+    OSXUpdateAfterLabelChange(label);
 #endif
 }
 
index fa0ce405154c4ec226db790ee5856c876b2424bd..94c6562b7b4b245d4855f22827701c45af3f312f 100644 (file)
@@ -199,7 +199,7 @@ NSButton *wxButtonCocoaImpl::GetNSButton() const
 }
 
 // Set the keyboard accelerator key from the label (e.g. "Click &Me")
-void wxButton::OSXSetAcceleratorFromLabel(const wxString& label)
+void wxButton::OSXUpdateAfterLabelChange(const wxString& label)
 {
     // Skip setting the accelerator for the default buttons as this would
     // overwrite the default "Enter" which should be preserved.