]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/toolbar.h
Update to Scintilla 1.48
[wxWidgets.git] / include / wx / mac / toolbar.h
index 2bc339b0136583f4dea899a8037b66476d625bd9..caef6bccd2a83d4eeb166c4d654541476b14ee86 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_TOOLBAR_H_
 #define _WX_TOOLBAR_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
 #pragma interface "toolbar.h"
 #endif
 
@@ -31,12 +31,14 @@ class WXDLLEXPORT wxToolBar: public wxToolBarBase
    * Public interface
    */
 
-   wxToolBar() { Init(); }
+   wxToolBar() : m_macToolHandles() { Init(); }
 
 
-  inline wxToolBar(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
-            long style = wxNO_BORDER|wxTB_HORIZONTAL,
-            const wxString& name = wxToolBarNameStr)
+  inline wxToolBar(wxWindow *parent, wxWindowID id,
+                   const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
+                   long style = wxNO_BORDER|wxTB_HORIZONTAL,
+                   const wxString& name = wxToolBarNameStr)
+      : m_macToolHandles()
   {
     Init();
     Create(parent, id, pos, size, style, name);