]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/version.h
Added wxNotebook::SetText and SetImage (thanks Harm)
[wxWidgets.git] / include / wx / version.h
index 9e1a8e5728bb51d08dd40e7d5367b9ca83518af7..5426016a32f995810ad0aa147789686428f4a819 100644 (file)
@@ -9,8 +9,8 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#ifndef __VERSIONH__
-#define __VERSIONH__
+#ifndef _WX_VERSIONH__
+#define _WX_VERSIONH__
 
 /* Bump-up with each new version */
 #define wxMAJOR_VERSION    2
@@ -18,8 +18,8 @@
 #define wxRELEASE_NUMBER   0
 #define wxVERSION_STRING "wxWindows 2.0"
 #define wxVERSION_NUMBER (wxMAJOR_VERSION * 1000) + (wxMINOR_VERSION * 100) + wxRELEASE_NUMBER
-#define wxBETA_NUMBER      12
+#define wxBETA_NUMBER      17
 #define wxVERSION_FLOAT float(wxMAJOR_VERSION + (wxMINOR_VERSION/10.0) + (wxRELEASE_NUMBER/100.0) + (wxBETA_NUMBER/10000.0))
 
 #endif
-       // __VERSIONH__
+       // _WX_VERSIONH__