Deprecate useless wxGenericImageList::Create() overload

This overload doesn't do anything and doesn't exist in the MSW version,
so deprecate it.
This commit is contained in:
Vadim Zeitlin
2018-10-30 22:47:21 +01:00
parent 28e9ea6bd6
commit 61e4534bd2
2 changed files with 5 additions and 6 deletions

View File

@@ -49,11 +49,6 @@ bool wxGenericImageList::Create( int width, int height, bool WXUNUSED(mask), int
{
m_size = wxSize(width, height);
return Create();
}
bool wxGenericImageList::Create()
{
return true;
}