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

@@ -256,7 +256,7 @@ protected:
wxDisplayInfoArray m_displays;
DECLARE_NO_COPY_CLASS(wxDisplayFactoryWin32Base)
wxDECLARE_NO_COPY_CLASS(wxDisplayFactoryWin32Base);
};
// ----------------------------------------------------------------------------
@@ -275,7 +275,7 @@ public:
virtual bool ChangeMode(const wxVideoMode& mode);
private:
DECLARE_NO_COPY_CLASS(wxDisplayImplMultimon)
wxDECLARE_NO_COPY_CLASS(wxDisplayImplMultimon);
};
class wxDisplayFactoryMultimon : public wxDisplayFactoryWin32Base
@@ -327,7 +327,7 @@ struct wxDisplayInfoDirectDraw : wxDisplayInfo
const GUID m_guid;
DECLARE_NO_COPY_CLASS(wxDisplayInfoDirectDraw)
wxDECLARE_NO_COPY_CLASS(wxDisplayInfoDirectDraw);
};
class wxDisplayImplDirectDraw : public wxDisplayImplWin32Base
@@ -351,7 +351,7 @@ public:
private:
IDirectDraw2 *m_pDD2;
DECLARE_NO_COPY_CLASS(wxDisplayImplDirectDraw)
wxDECLARE_NO_COPY_CLASS(wxDisplayImplDirectDraw);
};
class wxDisplayFactoryDirectDraw : public wxDisplayFactoryWin32Base
@@ -380,7 +380,7 @@ private:
// dynamically resolved DirectDrawCreate()
DirectDrawCreate_t m_pfnDirectDrawCreate;
DECLARE_NO_COPY_CLASS(wxDisplayFactoryDirectDraw)
wxDECLARE_NO_COPY_CLASS(wxDisplayFactoryDirectDraw);
};
#endif // wxUSE_DIRECTDRAW
@@ -944,7 +944,7 @@ private:
wxArrayVideoModes& m_modes;
const wxVideoMode& m_modeMatch;
DECLARE_NO_COPY_CLASS(wxDDVideoModesAdder)
wxDECLARE_NO_COPY_CLASS(wxDDVideoModesAdder);
};
HRESULT WINAPI wxDDEnumModesCallback(LPDDSURFACEDESC lpDDSurfaceDesc,