]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/statbmp.h
Add a Clear() method simply calling the wxComboBoxBase::Clear() to
[wxWidgets.git] / include / wx / motif / statbmp.h
index a8190f2a4f99e939543effbe4fe59ff62b2a6fda..fe481c5f886ad0cc2731a173d31f4300b1342361 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        statbmp.h
+// Name:        wx/motif/statbmp.h
 // Purpose:     wxStaticBitmap class
 // Author:      Julian Smart
 // Modified by:
 class WXDLLEXPORT wxStaticBitmap : public wxStaticBitmapBase
 {
     DECLARE_DYNAMIC_CLASS(wxStaticBitmap)
-        
+
 public:
     wxStaticBitmap() { }
-    ~wxStaticBitmap();
-    
+    virtual ~wxStaticBitmap();
+
     wxStaticBitmap(wxWindow *parent, wxWindowID id,
         const wxBitmap& label,
         const wxPoint& pos = wxDefaultPosition,
@@ -32,40 +32,40 @@ public:
     {
         Create(parent, id, label, pos, size, style, name);
     }
-    
+
     bool Create(wxWindow *parent, wxWindowID id,
         const wxBitmap& label,
         const wxPoint& pos = wxDefaultPosition,
         const wxSize& size = wxDefaultSize,
         long style = 0,
         const wxString& name = wxStaticBitmapNameStr);
-    
+
     virtual void SetBitmap(const wxBitmap& bitmap);
-    
+
     virtual bool ProcessCommand(wxCommandEvent& WXUNUSED(event))
     {
         return false;
     }
-    
+
     wxBitmap GetBitmap() const { return m_messageBitmap; }
-    
+
     // for compatibility with wxMSW
     wxIcon GetIcon() const
     {
         // don't use wxDynamicCast, icons and bitmaps are really the same thing
         return *(wxIcon*)&m_messageBitmap;
     }
-    
+
     // for compatibility with wxMSW
     void  SetIcon(const wxIcon& icon)
     {
         SetBitmap( icon );
     }
-    
+
     // Implementation
     virtual void ChangeBackgroundColour();
     virtual void ChangeForegroundColour();
-    
+
 protected:
     void DoSetBitmap();