No changes, just remove redundant "inline" from wxOSX headers

There is no need for them in the methods declared in the class declaration
anyhow, so just remove them.

No real changes.
This commit is contained in:
Vadim Zeitlin
2015-10-25 18:20:32 +01:00
parent e9b379fe2a
commit 3f33ecc773
7 changed files with 20 additions and 20 deletions

View File

@@ -16,8 +16,8 @@ class WXDLLIMPEXP_CORE wxRadioButton: public wxControl
wxDECLARE_DYNAMIC_CLASS(wxRadioButton);
public:
inline wxRadioButton() {}
inline wxRadioButton(wxWindow *parent, wxWindowID id,
wxRadioButton() {}
wxRadioButton(wxWindow *parent, wxWindowID id,
const wxString& label,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0,
@@ -43,7 +43,7 @@ public:
void Command(wxCommandEvent& event);
wxRadioButton *AddInCycle(wxRadioButton *cycle);
void RemoveFromCycle();
inline wxRadioButton *NextInCycle() {return m_cycle;}
wxRadioButton *NextInCycle() {return m_cycle;}
// osx specific event handling common for all osx-ports
@@ -65,8 +65,8 @@ class WXDLLIMPEXP_CORE wxBitmapRadioButton: public wxRadioButton
protected:
wxBitmap *theButtonBitmap;
public:
inline wxBitmapRadioButton() { theButtonBitmap = NULL; }
inline wxBitmapRadioButton(wxWindow *parent, wxWindowID id,
wxBitmapRadioButton() { theButtonBitmap = NULL; }
wxBitmapRadioButton(wxWindow *parent, wxWindowID id,
const wxBitmap *label,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize, long style = 0,