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:
@@ -368,7 +368,7 @@ public:
|
||||
{
|
||||
DoSetSizeHints(minW, minH, maxW, maxH, incW, incH);
|
||||
}
|
||||
|
||||
|
||||
void SetSizeHints( const wxSize& minSize,
|
||||
const wxSize& maxSize=wxDefaultSize,
|
||||
const wxSize& incSize=wxDefaultSize)
|
||||
@@ -377,7 +377,7 @@ public:
|
||||
maxSize.x, maxSize.y,
|
||||
incSize.x, incSize.y);
|
||||
}
|
||||
|
||||
|
||||
virtual void DoSetSizeHints(int minW, int minH,
|
||||
int maxW = wxDefaultCoord, int maxH = wxDefaultCoord,
|
||||
int incW = wxDefaultCoord, int incH = wxDefaultCoord );
|
||||
@@ -502,7 +502,7 @@ public:
|
||||
|
||||
// return the window which currently has the focus or NULL
|
||||
static wxWindow *FindFocus();
|
||||
|
||||
|
||||
static wxWindow *DoFindFocus() /* = 0: implement in derived classes */;
|
||||
|
||||
// can this window have focus?
|
||||
@@ -1085,7 +1085,7 @@ protected:
|
||||
// returns the main window of composite control; this is the window
|
||||
// that FindFocus returns if the focus is in one of composite control's
|
||||
// windows
|
||||
virtual wxWindow *GetMainWindowOfCompositeControl()
|
||||
virtual wxWindow *GetMainWindowOfCompositeControl()
|
||||
{ return (wxWindow*)this; }
|
||||
|
||||
// the window id - a number which uniquely identifies a window among
|
||||
@@ -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