]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed warning
authorJulian Smart <julian@anthemion.co.uk>
Sun, 24 Aug 2003 15:27:21 +0000 (15:27 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sun, 24 Aug 2003 15:27:21 +0000 (15:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23171 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/widgets/notebook.cpp

index 5c81ee9117a23ddc72e2c51a2e7a441a0f47d1a4..967cb19b5bf2ba9b9231093bc2673621a8cd3092 100644 (file)
@@ -136,7 +136,7 @@ protected:
 
     // is the value in range?
     bool IsValidValue(int val) const
-        { return (val >= 0) && (val < m_notebook->GetPageCount()); }
+        { return (val >= 0) && (val < (int) m_notebook->GetPageCount()); }
 
     // the controls
     // ------------