From 12b5f4b4d2d8a07962da7ba3b78c8c1ec2634a67 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Fri, 23 Jan 2009 08:40:26 +0000 Subject: [PATCH] Forgot header with OSX prefix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58319 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/osx/button.h | 4 ++-- include/wx/osx/checkbox.h | 2 +- include/wx/osx/choice.h | 2 +- include/wx/osx/combobox.h | 2 +- include/wx/osx/notebook.h | 2 +- include/wx/osx/radiobut.h | 2 +- include/wx/osx/scrolbar.h | 2 +- include/wx/osx/slider.h | 2 +- include/wx/osx/spinbutt.h | 2 +- include/wx/osx/tglbtn.h | 4 ++-- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/include/wx/osx/button.h b/include/wx/osx/button.h index ccf647576f..6c599dfaaa 100644 --- a/include/wx/osx/button.h +++ b/include/wx/osx/button.h @@ -50,7 +50,7 @@ public: // osx specific event handling common for all osx-ports - virtual bool HandleClicked( double timestampsec ); + virtual bool OSXHandleClicked( double timestampsec ); protected: virtual wxSize DoGetBestSize() const ; @@ -87,7 +87,7 @@ public: // osx specific event handling common for all osx-ports - virtual bool HandleClicked( double timestampsec ); + virtual bool OSXHandleClicked( double timestampsec ); protected: virtual wxSize DoGetBestSize() const ; diff --git a/include/wx/osx/checkbox.h b/include/wx/osx/checkbox.h index 85ea0b7739..2751c3f8fa 100644 --- a/include/wx/osx/checkbox.h +++ b/include/wx/osx/checkbox.h @@ -38,7 +38,7 @@ public: // osx specific event handling common for all osx-ports - virtual bool HandleClicked( double timestampsec ); + virtual bool OSXHandleClicked( double timestampsec ); protected: void DoSet3StateValue(wxCheckBoxState val); virtual wxCheckBoxState DoGet3StateValue() const; diff --git a/include/wx/osx/choice.h b/include/wx/osx/choice.h index 829843be36..c69ab66931 100644 --- a/include/wx/osx/choice.h +++ b/include/wx/osx/choice.h @@ -78,7 +78,7 @@ public: virtual void SetString(unsigned int pos, const wxString& s); // osx specific event handling common for all osx-ports - virtual bool HandleClicked( double timestampsec ); + virtual bool OSXHandleClicked( double timestampsec ); protected: virtual void DoDeleteOneItem(unsigned int n); diff --git a/include/wx/osx/combobox.h b/include/wx/osx/combobox.h index 6e0c649aaa..69c96872f9 100644 --- a/include/wx/osx/combobox.h +++ b/include/wx/osx/combobox.h @@ -127,7 +127,7 @@ class WXDLLIMPEXP_CORE wxComboBox : public wxControl, public wxComboBoxBase // osx specific event handling common for all osx-ports - virtual bool HandleClicked( double timestampsec ); + virtual bool OSXHandleClicked( double timestampsec ); wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST diff --git a/include/wx/osx/notebook.h b/include/wx/osx/notebook.h index 6a7d4a2e44..ff60922e2a 100644 --- a/include/wx/osx/notebook.h +++ b/include/wx/osx/notebook.h @@ -119,7 +119,7 @@ public: virtual void Command(wxCommandEvent& event); // osx specific event handling common for all osx-ports - virtual bool HandleClicked( double timestampsec ); + virtual bool OSXHandleClicked( double timestampsec ); protected: virtual wxNotebookPage *DoRemovePage(size_t page) ; diff --git a/include/wx/osx/radiobut.h b/include/wx/osx/radiobut.h index 9c719eed3b..6cf506ec36 100644 --- a/include/wx/osx/radiobut.h +++ b/include/wx/osx/radiobut.h @@ -48,7 +48,7 @@ public: // osx specific event handling common for all osx-ports - virtual bool HandleClicked( double timestampsec ); + virtual bool OSXHandleClicked( double timestampsec ); protected: wxRadioButton *m_cycle; diff --git a/include/wx/osx/scrolbar.h b/include/wx/osx/scrolbar.h index 9d0a3568f6..70850d166e 100644 --- a/include/wx/osx/scrolbar.h +++ b/include/wx/osx/scrolbar.h @@ -49,7 +49,7 @@ public: // implementation only from now on void Command(wxCommandEvent& event); virtual void TriggerScrollEvent( wxEventType scrollEvent ) ; - virtual bool HandleClicked( double timestampsec ); + virtual bool OSXHandleClicked( double timestampsec ); protected: virtual wxSize DoGetBestSize() const; diff --git a/include/wx/osx/slider.h b/include/wx/osx/slider.h index f0b416e11f..b70ae451b0 100644 --- a/include/wx/osx/slider.h +++ b/include/wx/osx/slider.h @@ -77,7 +77,7 @@ public: void Command(wxCommandEvent& event); // osx specific event handling common for all osx-ports - virtual bool HandleClicked( double timestampsec ); + virtual bool OSXHandleClicked( double timestampsec ); virtual void TriggerScrollEvent( wxEventType scrollEvent ) ; protected: diff --git a/include/wx/osx/spinbutt.h b/include/wx/osx/spinbutt.h index 56025a11d2..8f5ffdedff 100644 --- a/include/wx/osx/spinbutt.h +++ b/include/wx/osx/spinbutt.h @@ -62,7 +62,7 @@ public: // osx specific event handling common for all osx-ports - virtual bool HandleClicked( double timestampsec ); + virtual bool OSXHandleClicked( double timestampsec ); protected: void SendThumbTrackEvent() ; diff --git a/include/wx/osx/tglbtn.h b/include/wx/osx/tglbtn.h index fde10d7980..1babd554b7 100644 --- a/include/wx/osx/tglbtn.h +++ b/include/wx/osx/tglbtn.h @@ -44,7 +44,7 @@ public: virtual void SetValue(bool value); virtual bool GetValue() const ; - virtual bool HandleClicked( double timestampsec ); + virtual bool OSXHandleClicked( double timestampsec ); virtual void Command(wxCommandEvent& event); @@ -91,7 +91,7 @@ public: virtual void SetValue(bool value); virtual bool GetValue() const ; - virtual bool HandleClicked( double timestampsec ); + virtual bool OSXHandleClicked( double timestampsec ); virtual void Command(wxCommandEvent& event); -- 2.47.2