From: Paul Cornett Date: Tue, 24 Oct 2006 06:25:02 +0000 (+0000) Subject: static class variable needs a definition X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/576bdf856573db9e0b8f614d9bf0cbf80e2b001e static class variable needs a definition git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42329 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/dcbufcmn.cpp b/src/common/dcbufcmn.cpp index d57648f99a..686daadc77 100644 --- a/src/common/dcbufcmn.cpp +++ b/src/common/dcbufcmn.cpp @@ -24,12 +24,12 @@ #pragma hdrstop #endif +#include "wx/dcbuffer.h" + #ifndef WX_PRECOMP #include "wx/module.h" #endif -#include "wx/dcbuffer.h" - // ============================================================================ // implementation // ============================================================================ @@ -65,6 +65,8 @@ private: DECLARE_DYNAMIC_CLASS(wxSharedDCBufferManager) }; +wxBitmap* wxSharedDCBufferManager::ms_buffer; + IMPLEMENT_DYNAMIC_CLASS(wxSharedDCBufferManager, wxModule) // ============================================================================