]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/statusbr.h
don't draw borders for bitmap buttons with wxBORDER_NONE style
[wxWidgets.git] / include / wx / statusbr.h
index 9b40bf23cac2e660cb6b19255b6b6602a7fa6ee5..241f5cbf8eb99a296c635d9ee96ff0cfed19356d 100644 (file)
@@ -90,7 +90,7 @@ protected:
     bool m_bEllipsized;
 };
 
-WX_DECLARE_OBJARRAY(wxStatusBarPane, wxStatusBarPaneArray);
+WX_DECLARE_EXPORTED_OBJARRAY(wxStatusBarPane, wxStatusBarPaneArray);
 
 // ----------------------------------------------------------------------------
 // wxStatusBar: a window near the bottom of the frame used for status info
@@ -186,13 +186,15 @@ protected:
 
     // wxWindow overrides:
 
-    virtual void DoSetToolTip( wxToolTip *tip )
-        { 
+#if wxUSE_TOOLTIPS
+   virtual void DoSetToolTip( wxToolTip *tip )
+        {
             wxASSERT_MSG(!HasFlag(wxSTB_SHOW_TIPS),
                          "Do not set tooltip(s) manually when using wxSTB_SHOW_TIPS!");
-            return wxWindow::DoSetToolTip(tip);
+            wxWindow::DoSetToolTip(tip);
         }
-
+#endif
+   
     virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }