Use wxDECLARE_NO_COPY_CLASS in the Impl classes

This commit is contained in:
Robin Dunn
2020-04-02 13:00:44 -07:00
parent 06bda3e5de
commit a7fd4db107
2 changed files with 2 additions and 0 deletions

View File

@@ -59,6 +59,7 @@ public:
static void CleanUpHandlers(); static void CleanUpHandlers();
static void InitStandardHandlers(); static void InitStandardHandlers();
wxDECLARE_NO_COPY_CLASS(wxAnimationGenericImpl);
wxDECLARE_DYNAMIC_CLASS(wxAnimationGenericImpl); wxDECLARE_DYNAMIC_CLASS(wxAnimationGenericImpl);
}; };

View File

@@ -65,6 +65,7 @@ private:
void UnRef(); void UnRef();
typedef wxAnimationImpl base_type; typedef wxAnimationImpl base_type;
wxDECLARE_NO_COPY_CLASS(wxAnimationGTKImpl);
wxDECLARE_DYNAMIC_CLASS(wxAnimationGTKImpl); wxDECLARE_DYNAMIC_CLASS(wxAnimationGTKImpl);
}; };