]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/statbmp.h
Automake fix.
[wxWidgets.git] / include / wx / gtk / statbmp.h
index b534110b1d0dd6e17f371d100053fc57aa089276..632624ce5de6cb72ab2adad180ebad0e2935096b 100644 (file)
@@ -2,9 +2,8 @@
 // Name:        statbmp.h
 // Purpose:
 // Author:      Robert Roebling
-// Created:     01/02/97
-// Id:
-// Copyright:   (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
+// Id:          $Id$
+// Copyright:   (c) 1998 Robert Roebling
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #endif
 
 #include "wx/defs.h"
+
+#if wxUSE_STATBMP
+
 #include "wx/object.h"
 #include "wx/control.h"
+#include "wx/bitmap.h"
 
 //-----------------------------------------------------------------------------
 // classes
@@ -51,10 +54,12 @@ class wxStaticBitmap: public wxControl
       long style = 0, const wxString& name = wxStaticBitmapNameStr);
     virtual void SetBitmap( const wxBitmap& bitmap );
     wxBitmap& GetBitmap(void) const { return (wxBitmap&)m_bitmap; }
-
+    
  private:
  
    wxBitmap   m_bitmap;
 };
 
+#endif
+
 #endif // __GTKSTATICBITMAPH__