X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1cc4f822d37f6546c5b00c341b2eecbaca5054b2..ea969303f8174c416218c17e353a1ac26dbb6a76:/src/univ/notebook.cpp

diff --git a/src/univ/notebook.cpp b/src/univ/notebook.cpp
index 80763267ed..68e2ec2e23 100644
--- a/src/univ/notebook.cpp
+++ b/src/univ/notebook.cpp
@@ -44,7 +44,12 @@
 // macros
 // ----------------------------------------------------------------------------
 
+#if 0
+// due to unsigned type nPage is always >= 0
 #define IS_VALID_PAGE(nPage) (((nPage) >= 0) && ((size_t(nPage)) < GetPageCount()))
+#else
+#define IS_VALID_PAGE(nPage) ((size_t(nPage)) < GetPageCount())
+#endif
 
 // ----------------------------------------------------------------------------
 // constants