Semicolon fixes according to Vadim's note about being danger (OW,BCC,MinGW,DMC tested).
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29821 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -233,8 +233,8 @@ class WXDLLEXPORT wxAccessibleBase : public wxObject
|
||||
DECLARE_NO_COPY_CLASS(wxAccessibleBase)
|
||||
|
||||
public:
|
||||
wxAccessibleBase(wxWindow* win): m_window(win) {};
|
||||
virtual ~wxAccessibleBase() {};
|
||||
wxAccessibleBase(wxWindow* win): m_window(win) {}
|
||||
virtual ~wxAccessibleBase() {}
|
||||
|
||||
// Overridables
|
||||
|
||||
|
@@ -117,7 +117,7 @@ WX_DECLARE_VECTOR(wxClientDataDictionaryPair,wxClientDataDictionaryPairVector);
|
||||
class WXDLLIMPEXP_BASE wxClientDataDictionary
|
||||
{
|
||||
public:
|
||||
wxClientDataDictionary() {};
|
||||
wxClientDataDictionary() {}
|
||||
|
||||
// deletes all the data
|
||||
void DestroyData()
|
||||
|
@@ -193,7 +193,7 @@ public:
|
||||
virtual void OnDraw(wxDC *dc) = 0;
|
||||
virtual void OnPrint(wxDC *dc, wxObject *info);
|
||||
virtual void OnUpdate(wxView *sender, wxObject *hint = (wxObject *) NULL);
|
||||
virtual void OnClosingDocument() {};
|
||||
virtual void OnClosingDocument() {}
|
||||
virtual void OnChangeFilename();
|
||||
|
||||
// Called by framework if created automatically by the default document
|
||||
|
@@ -121,7 +121,7 @@ public:
|
||||
|
||||
// Instance methods.
|
||||
|
||||
wxPluginManager() : m_entry(NULL) {};
|
||||
wxPluginManager() : m_entry(NULL) {}
|
||||
wxPluginManager(const wxString &libname, int flags = wxDL_DEFAULT)
|
||||
{
|
||||
Load(libname, flags);
|
||||
|
@@ -222,7 +222,7 @@ public:
|
||||
|
||||
void Init();
|
||||
|
||||
~wxDirFilterListCtrl() {};
|
||||
~wxDirFilterListCtrl() {}
|
||||
|
||||
//// Operations
|
||||
void FillFilterList(const wxString& filter, int defaultFilter);
|
||||
|
@@ -101,7 +101,7 @@ class WXDLLIMPEXP_ADV wxGridCellEnumEditor : public wxGridCellChoiceEditor
|
||||
{
|
||||
public:
|
||||
wxGridCellEnumEditor( const wxString& choices = wxEmptyString );
|
||||
virtual ~wxGridCellEnumEditor() {};
|
||||
virtual ~wxGridCellEnumEditor() {}
|
||||
|
||||
virtual wxGridCellEditor* Clone() const;
|
||||
|
||||
|
@@ -44,7 +44,7 @@ class WXDLLIMPEXP_ADV wxSplashScreen: public wxFrame
|
||||
{
|
||||
public:
|
||||
// for RTTI macros only
|
||||
wxSplashScreen() {};
|
||||
wxSplashScreen() {}
|
||||
wxSplashScreen(const wxBitmap& bitmap, long splashStyle, int milliseconds,
|
||||
wxWindow* parent, wxWindowID id,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
|
@@ -79,7 +79,7 @@ public:
|
||||
wxHtmlHelpData *GetHelpData() { return &m_helpData; }
|
||||
|
||||
virtual bool Quit() ;
|
||||
virtual void OnQuit() {};
|
||||
virtual void OnQuit() {}
|
||||
|
||||
void OnCloseFrame(wxCloseEvent& evt);
|
||||
|
||||
|
@@ -211,7 +211,7 @@ class WXDLLIMPEXP_HTML wxHtmlWinTagHandler : public wxHtmlTagHandler
|
||||
DECLARE_ABSTRACT_CLASS(wxHtmlWinTagHandler)
|
||||
|
||||
public:
|
||||
wxHtmlWinTagHandler() : wxHtmlTagHandler() {};
|
||||
wxHtmlWinTagHandler() : wxHtmlTagHandler() {}
|
||||
|
||||
virtual void SetParser(wxHtmlParser *parser) {wxHtmlTagHandler::SetParser(parser); m_WParser = (wxHtmlWinParser*) parser;};
|
||||
|
||||
@@ -239,7 +239,7 @@ class WXDLLIMPEXP_HTML wxHtmlTagsModule : public wxModule
|
||||
DECLARE_DYNAMIC_CLASS(wxHtmlTagsModule)
|
||||
|
||||
public:
|
||||
wxHtmlTagsModule() : wxModule() {};
|
||||
wxHtmlTagsModule() : wxModule() {}
|
||||
|
||||
virtual bool OnInit();
|
||||
virtual void OnExit();
|
||||
|
@@ -135,7 +135,7 @@ class WXDLLIMPEXP_BASE wxServerBase: public wxObject
|
||||
|
||||
public:
|
||||
inline wxServerBase(void) {}
|
||||
inline ~wxServerBase(void) {};
|
||||
inline ~wxServerBase(void) {}
|
||||
|
||||
// Returns false on error (e.g. port number is already in use)
|
||||
virtual bool Create(const wxString& serverName) = 0;
|
||||
@@ -149,8 +149,8 @@ class WXDLLIMPEXP_BASE wxClientBase: public wxObject
|
||||
DECLARE_CLASS(wxClientBase)
|
||||
|
||||
public:
|
||||
inline wxClientBase(void) {};
|
||||
inline ~wxClientBase(void) {};
|
||||
inline wxClientBase(void) {}
|
||||
inline ~wxClientBase(void) {}
|
||||
|
||||
virtual bool ValidHost(const wxString& host) = 0;
|
||||
|
||||
|
@@ -123,7 +123,7 @@ class WXDLLIMPEXP_BASE wxLog
|
||||
{
|
||||
public:
|
||||
// ctor
|
||||
wxLog(){};
|
||||
wxLog(){}
|
||||
|
||||
// Internal buffer.
|
||||
|
||||
|
@@ -24,7 +24,7 @@ class wxFontEnumerator: public wxObject
|
||||
{
|
||||
DECLARE_CLASS(wxFontEnumerator)
|
||||
public:
|
||||
wxFontEnumerator() {};
|
||||
wxFontEnumerator() {}
|
||||
|
||||
// Enumerate the fonts.
|
||||
bool Enumerate();
|
||||
|
@@ -27,8 +27,8 @@ class WXDLLEXPORT wxWinHelpController: public wxHelpControllerBase
|
||||
DECLARE_CLASS(wxWinHelpController)
|
||||
|
||||
public:
|
||||
wxWinHelpController() {};
|
||||
~wxWinHelpController() {};
|
||||
wxWinHelpController() {}
|
||||
~wxWinHelpController() {}
|
||||
|
||||
// Must call this to set the filename
|
||||
virtual bool Initialize(const wxString& file);
|
||||
|
@@ -93,7 +93,7 @@ public:
|
||||
virtual bool Show(bool show = true);
|
||||
void SetFocus();
|
||||
virtual bool Enable(bool enable = true);
|
||||
void SetLabelFont(const wxFont& WXUNUSED(font)) {};
|
||||
void SetLabelFont(const wxFont& WXUNUSED(font)) {}
|
||||
void SetButtonFont(const wxFont& font) { SetFont(font); }
|
||||
|
||||
void Command(wxCommandEvent& event);
|
||||
|
@@ -39,7 +39,7 @@ public:
|
||||
long style = wxCONFIG_USE_GLOBAL_FILE);
|
||||
|
||||
// dtor will save unsaved data
|
||||
virtual ~wxRegConfig(){};
|
||||
virtual ~wxRegConfig(){}
|
||||
|
||||
// implement inherited pure virtual functions
|
||||
// ------------------------------------------
|
||||
|
@@ -52,7 +52,7 @@ DECLARE_ABSTRACT_CLASS(wxVariantData)
|
||||
public:
|
||||
|
||||
// Construction & destruction
|
||||
wxVariantData() {};
|
||||
wxVariantData() {}
|
||||
|
||||
// Override these to provide common functionality
|
||||
// Copy to data
|
||||
|
@@ -1412,7 +1412,7 @@ class WXDLLEXPORT wxWindowAccessible: public wxAccessible
|
||||
{
|
||||
public:
|
||||
wxWindowAccessible(wxWindow* win): wxAccessible(win) { if (win) win->SetAccessible(this); }
|
||||
virtual ~wxWindowAccessible() {};
|
||||
virtual ~wxWindowAccessible() {}
|
||||
|
||||
// Overridables
|
||||
|
||||
|
Reference in New Issue
Block a user