add wx-prefixed and semicolon-requiring versions of DECLARE_NO_{COPY,ASSIGN}_CLASS macros

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58757 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-02-08 11:45:59 +00:00
parent 4800ca79ac
commit c0c133e13b
424 changed files with 715 additions and 704 deletions

View File

@@ -1212,7 +1212,7 @@ protected:
private:
DECLARE_ABSTRACT_CLASS(wxDC)
DECLARE_NO_COPY_CLASS(wxDC)
wxDECLARE_NO_COPY_CLASS(wxDC);
};
// ----------------------------------------------------------------------------
@@ -1248,7 +1248,7 @@ private:
wxColour m_colFgOld;
DECLARE_NO_COPY_CLASS(wxDCTextColourChanger)
wxDECLARE_NO_COPY_CLASS(wxDCTextColourChanger);
};
// ----------------------------------------------------------------------------
@@ -1275,7 +1275,7 @@ private:
wxPen m_penOld;
DECLARE_NO_COPY_CLASS(wxDCPenChanger)
wxDECLARE_NO_COPY_CLASS(wxDCPenChanger);
};
// ----------------------------------------------------------------------------
@@ -1302,7 +1302,7 @@ private:
wxBrush m_brushOld;
DECLARE_NO_COPY_CLASS(wxDCBrushChanger)
wxDECLARE_NO_COPY_CLASS(wxDCBrushChanger);
};
// ----------------------------------------------------------------------------
@@ -1325,7 +1325,7 @@ public:
private:
wxDC& m_dc;
DECLARE_NO_COPY_CLASS(wxDCClipper)
wxDECLARE_NO_COPY_CLASS(wxDCClipper);
};
// ----------------------------------------------------------------------------
@@ -1352,7 +1352,7 @@ private:
wxFont m_fontOld;
DECLARE_NO_COPY_CLASS(wxDCFontChanger)
wxDECLARE_NO_COPY_CLASS(wxDCFontChanger);
};