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:
@@ -74,7 +74,7 @@ enum wxPropertySheetDialogFlags
|
|||||||
wxPROPSHEET_TREEBOOK = 0x0040,
|
wxPROPSHEET_TREEBOOK = 0x0040,
|
||||||
|
|
||||||
// Shrink dialog to fit current page
|
// Shrink dialog to fit current page
|
||||||
wxPROPSHEET_SHRINKTOFIT = 0x0100,
|
wxPROPSHEET_SHRINKTOFIT = 0x0100
|
||||||
};
|
};
|
||||||
|
|
||||||
class WXDLLIMPEXP_ADV wxPropertySheetDialog : public wxDialog
|
class WXDLLIMPEXP_ADV wxPropertySheetDialog : public wxDialog
|
||||||
|
@@ -95,7 +95,7 @@ private:
|
|||||||
IsWxString = 0x01,
|
IsWxString = 0x01,
|
||||||
IsCharPtr = 0x02,
|
IsCharPtr = 0x02,
|
||||||
IsWCharPtr = 0x04,
|
IsWCharPtr = 0x04,
|
||||||
OwnsWxString = 0x10,
|
OwnsWxString = 0x10
|
||||||
};
|
};
|
||||||
|
|
||||||
union
|
union
|
||||||
|
@@ -42,7 +42,7 @@ const char wxStatusBarNameStr[] = "statusBar";
|
|||||||
IMPLEMENT_DYNAMIC_CLASS(wxStatusBar, wxWindow)
|
IMPLEMENT_DYNAMIC_CLASS(wxStatusBar, wxWindow)
|
||||||
|
|
||||||
#include "wx/arrimpl.cpp" // This is a magic incantation which must be done!
|
#include "wx/arrimpl.cpp" // This is a magic incantation which must be done!
|
||||||
WX_DEFINE_OBJARRAY(wxStatusBarPaneArray);
|
WX_DEFINE_OBJARRAY(wxStatusBarPaneArray)
|
||||||
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
@@ -842,6 +842,6 @@ void wxCodeDepersister::SetConnect(int eventSourceObjectID,
|
|||||||
|
|
||||||
#include "wx/arrimpl.cpp"
|
#include "wx/arrimpl.cpp"
|
||||||
|
|
||||||
WX_DEFINE_OBJARRAY(wxxVariantArray);
|
WX_DEFINE_OBJARRAY(wxxVariantArray)
|
||||||
|
|
||||||
#endif // wxUSE_EXTENDED_RTTI
|
#endif // wxUSE_EXTENDED_RTTI
|
||||||
|
@@ -65,7 +65,7 @@ BEGIN_EVENT_TABLE(wxBitmapToggleButton,wxToggleButtonBase)
|
|||||||
EVT_MOUSE_EVENTS(wxBitmapToggleButton::OnMouse)
|
EVT_MOUSE_EVENTS(wxBitmapToggleButton::OnMouse)
|
||||||
EVT_CHAR(wxBitmapToggleButton::OnChar)
|
EVT_CHAR(wxBitmapToggleButton::OnChar)
|
||||||
EVT_SIZE(wxBitmapToggleButton::OnSize)
|
EVT_SIZE(wxBitmapToggleButton::OnSize)
|
||||||
END_EVENT_TABLE();
|
END_EVENT_TABLE()
|
||||||
|
|
||||||
void wxBitmapToggleButton::Init()
|
void wxBitmapToggleButton::Init()
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user