]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/version.h
1. EVT_GRID_XXX constants renamed to wxEVT_GRID_XXX
[wxWidgets.git] / include / wx / version.h
index 68f7db190ea2df33942fce7412001ea2281dbbe3..77e1bbf05ae3f7cfdda3925fc1f519b2126128b9 100644 (file)
 
 /* Bump-up with each new version */
 #define wxMAJOR_VERSION    2
-#define wxMINOR_VERSION    0
-#define wxRELEASE_NUMBER   0
-#define wxVERSION_STRING "wxWindows 2.0"
+#define wxMINOR_VERSION    1
+#define wxRELEASE_NUMBER   14
+#define wxVERSION_STRING "wxWindows 2.1.14"
 #define wxVERSION_NUMBER (wxMAJOR_VERSION * 1000) + (wxMINOR_VERSION * 100) + wxRELEASE_NUMBER
-#define wxBETA_NUMBER      12
-#define wxVERSION_FLOAT float(wxMAJOR_VERSION + (wxMINOR_VERSION/10.0) + (wxRELEASE_NUMBER/100.0) + (wxBETA_NUMBER/10000.0))
+#define wxBETA_NUMBER      0
+#define wxVERSION_FLOAT wxMAJOR_VERSION + (wxMINOR_VERSION/10.0) + (wxRELEASE_NUMBER/100.0) + (wxBETA_NUMBER/10000.0)
 
 #endif
-       // _WX_VERSIONH__
+// _WX_VERSIONH__