]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/longlong/longlongtest.cpp
New icon for combobox with bitmaps. Improved readability of icons on dark backgrounds...
[wxWidgets.git] / tests / longlong / longlongtest.cpp
index 3d4815db0958732bcea2874aeb852b344fce76d6..e09edae668f1e99208015f93ef2a88f4edce8539 100644 (file)
@@ -24,6 +24,8 @@
 #include "wx/longlong.h"
 #include "wx/timer.h"
 
+#if wxUSE_LONGLONG
+
 // ----------------------------------------------------------------------------
 // helpers for testing
 // ----------------------------------------------------------------------------
@@ -303,7 +305,7 @@ void LongLongTestCase::ToString()
     a.Negate();
     CPPUNIT_ASSERT( a.ToString() == _T("-1311768467139281697") );
 
-    wxLongLong llMin(LONG_MIN, 0);
+    wxLongLong llMin(-2147483647L - 1L, 0);
     CPPUNIT_ASSERT( llMin.ToString() == _T("-9223372036854775808") );
 
 #if wxUSE_LONGLONG_WX
@@ -322,3 +324,4 @@ void LongLongTestCase::ToString()
 
 }
 
+#endif // wxUSE_LONGLONG