Fix g++ warnings about initialized variables being declared extern.

Don't declare variables extern when initializing them, this is already the
case implicitly anyhow and explicit "extern" results in g++ warnings.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67973 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2011-06-17 21:53:32 +00:00
parent 6a5f121bf9
commit bb60690d1d
2 changed files with 4 additions and 4 deletions

View File

@@ -186,7 +186,7 @@ extern wxMenu *wxCurrentPopupMenu;
// This is a hack used by the owner-drawn wxButton implementation to ensure
// that the brush used for erasing its background is correctly aligned with the
// control.
extern wxWindowMSW *wxWindowBeingErased = NULL;
wxWindowMSW *wxWindowBeingErased = NULL;
#endif // wxUSE_UXTHEME
namespace