]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/statusbr.cpp
fix for the initial size of the dialogs
[wxWidgets.git] / src / generic / statusbr.cpp
index 8880c2ebac9bf56f7d570708f5520ad1b1bf29e9..16e9246509e18e4f73f3730cc87803b709bf1715 100644 (file)
 
 #include "wx/statusbr.h"
 
-// with wxUSE_NATIVE_STATUSBAR it is not included from wx/statusbr.h
-#include "wx/generic/statusbr.h"
-
-IMPLEMENT_DYNAMIC_CLASS(wxStatusBarGeneric, wxWindow)
+// we only have to do it here when we use wxStatusBarGeneric in addition to the
+// standard wxStatusBar class, if wxStatusBarGeneric is the same as
+// wxStatusBar, then the corresponding IMPLEMENT_DYNAMIC_CLASS is already in
+// common/statbar.cpp
+#if defined(__WXMAC__) || \
+    (defined(wxUSE_NATIVE_STATUSBAR) && wxUSE_NATIVE_STATUSBAR)
+    #include "wx/generic/statusbr.h"
+
+    IMPLEMENT_DYNAMIC_CLASS(wxStatusBarGeneric, wxWindow)
+#endif // wxUSE_NATIVE_STATUSBAR
 
 BEGIN_EVENT_TABLE(wxStatusBarGeneric, wxWindow)
     EVT_PAINT(wxStatusBarGeneric::OnPaint)