]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed some consts from tabctrl.h; fixed some other errors
authorJulian Smart <julian@anthemion.co.uk>
Thu, 2 Jul 1998 15:17:35 +0000 (15:17 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 2 Jul 1998 15:17:35 +0000 (15:17 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@169 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/memory.h
include/wx/msw/gauge.h
include/wx/msw/tabctrl.h

index 840d5085ca49f5bc701282f90da99ea994e4fbf2..468acdfabfb03ca6b2e850c12d5679e066498a6f 100644 (file)
@@ -56,8 +56,10 @@ void wxDebugFree(void * buf, bool isVect = FALSE);
 void * operator new (size_t size, char * fileName, int lineNum);
 void operator delete (void * buf);
 
+#if !( defined (_MSC_VER) && (_MSC_VER <= 800) )
 void * operator new[] (size_t size, char * fileName, int lineNum);
 void operator delete[] (void * buf);
+#endif
 
 #define new WXDEBUG_NEW
 
index e4df50bc8a36cd7b0fef411cef627d88993df5b7..d2effc34415006c7f16760883340d3c1a5b18f9f 100644 (file)
@@ -21,7 +21,7 @@
 #define wxGauge wxGauge95
 #define classwxGauge classwxGauge95
 #else
-#include "wx/msw/gaugemsw.h
+#include "wx/msw/gaugemsw.h"
 #define wxGauge wxGaugeMSW
 #define classwxGauge classwxGaugeMSW
 #endif
index 6b9dd252b6649cbe53c7a561ea18fa0c80ad3cb8..cd9e4590ed49cb2c4fe6357314ff7b7e2062c591 100644 (file)
@@ -98,8 +98,8 @@ class WXDLLEXPORT wxTabCtrl: public wxControl
 
 // Operations
 
-    bool Create(wxWindow *parent, const wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
-                const long style = 0, const wxString& name = "tabCtrl");
+    bool Create(wxWindow *parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
+                long style = 0, const wxString& name = "tabCtrl");
 
     // Delete all items
     bool DeleteAllItems();