]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/version.h
Added some tentative wxMotif clipboard code; did some file formatting
[wxWidgets.git] / include / wx / version.h
index 5426016a32f995810ad0aa147789686428f4a819..07fa7a7293638012d88f2304ea53024f0db9da06 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 wxRELEASE_NUMBER   1
+#define wxVERSION_STRING "wxWindows 2.0.1"
 #define wxVERSION_NUMBER (wxMAJOR_VERSION * 1000) + (wxMINOR_VERSION * 100) + wxRELEASE_NUMBER
 #define wxBETA_NUMBER      17
-#define wxVERSION_FLOAT float(wxMAJOR_VERSION + (wxMINOR_VERSION/10.0) + (wxRELEASE_NUMBER/100.0) + (wxBETA_NUMBER/10000.0))
+#define wxVERSION_FLOAT wxMAJOR_VERSION + (wxMINOR_VERSION/10.0) + (wxRELEASE_NUMBER/100.0) + (wxBETA_NUMBER/10000.0)
 
 #endif
        // _WX_VERSIONH__