Removed extraneous semicolons and commas (partly fixes #10456).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58579 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis 2009-02-01 04:48:19 +00:00
parent 3350ab0cf2
commit 35524f615e
5 changed files with 5 additions and 5 deletions

View File

@ -74,7 +74,7 @@ enum wxPropertySheetDialogFlags
wxPROPSHEET_TREEBOOK = 0x0040,
// Shrink dialog to fit current page
wxPROPSHEET_SHRINKTOFIT = 0x0100,
wxPROPSHEET_SHRINKTOFIT = 0x0100
};
class WXDLLIMPEXP_ADV wxPropertySheetDialog : public wxDialog

View File

@ -95,7 +95,7 @@ private:
IsWxString = 0x01,
IsCharPtr = 0x02,
IsWCharPtr = 0x04,
OwnsWxString = 0x10,
OwnsWxString = 0x10
};
union

View File

@ -42,7 +42,7 @@ const char wxStatusBarNameStr[] = "statusBar";
IMPLEMENT_DYNAMIC_CLASS(wxStatusBar, wxWindow)
#include "wx/arrimpl.cpp" // This is a magic incantation which must be done!
WX_DEFINE_OBJARRAY(wxStatusBarPaneArray);
WX_DEFINE_OBJARRAY(wxStatusBarPaneArray)
// ----------------------------------------------------------------------------

View File

@ -842,6 +842,6 @@ void wxCodeDepersister::SetConnect(int eventSourceObjectID,
#include "wx/arrimpl.cpp"
WX_DEFINE_OBJARRAY(wxxVariantArray);
WX_DEFINE_OBJARRAY(wxxVariantArray)
#endif // wxUSE_EXTENDED_RTTI

View File

@ -65,7 +65,7 @@ BEGIN_EVENT_TABLE(wxBitmapToggleButton,wxToggleButtonBase)
EVT_MOUSE_EVENTS(wxBitmapToggleButton::OnMouse)
EVT_CHAR(wxBitmapToggleButton::OnChar)
EVT_SIZE(wxBitmapToggleButton::OnSize)
END_EVENT_TABLE();
END_EVENT_TABLE()
void wxBitmapToggleButton::Init()
{