Merge pull request #3019 from akortunov/warnfix

Fix override warning with MyGUI 3.4
pull/593/head
Bret Curtis 4 years ago committed by GitHub
commit 4e1ca82e47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -106,10 +106,16 @@ public:
bool checkTexture(MyGUI::ITexture* _texture);
// setViewSize() is a part of MyGUI::RenderManager interface since 3.4.0 release
#if MYGUI_VERSION < MYGUI_DEFINE_VERSION(3,4,0)
void setViewSize(int width, int height);
#else
void setViewSize(int width, int height) override;
#endif
/*internal:*/
void collectDrawCalls();
void setViewSize(int width, int height);
};
}

Loading…
Cancel
Save