]> git.saurik.com Git - wxWidgets.git/commitdiff
wxOS2 night build warning fixes.
authorWłodzimierz Skiba <abx@abx.art.pl>
Wed, 15 Mar 2006 15:33:34 +0000 (15:33 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Wed, 15 Mar 2006 15:33:34 +0000 (15:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38108 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/os2/listbox.cpp
src/os2/radiobox.cpp
src/os2/settings.cpp

index bdc00bfefe8e119b3245eccba7eb011ed3ac90d6..4a057dea63afee9ad72f9085dcc9e98e296e54ac 100644 (file)
@@ -608,7 +608,7 @@ void wxListBox::SetString(int N, const wxString& rsString)
 
     int                             nNewN = N;
 
-    if (N == m_nNumItems - 1)
+    if (N == (int)(m_nNumItems - 1))
         nNewN = -1;
 
     ::WinSendMsg( GetHwnd()
index 7730459f64aa9b0dd1c30e16f4aebc7ca42036ae..d2ef991a12cf478c0f4f28dbdb6fce839de05308 100644 (file)
@@ -423,7 +423,7 @@ void wxRadioBox::DoSetSize(
             //
             int                  n = i + 1;
 
-            bIsLastInTheRow = ((n % GetMajorDim()) == 0) || (n == m_nNoItems);
+            bIsLastInTheRow = ((n % GetMajorDim()) == 0) || (n == (int)m_nNoItems);
         }
         else // winRA_SPECIFY_ROWS
         {
index 5e94ed37e135f345640818cae53a617fe4c2f120..c75d66794f8cb7252152cd20c5054fc450be7011 100644 (file)
@@ -301,8 +301,11 @@ bool wxSystemSettingsNative::HasFeature( wxSystemFeature index )
         case wxSYS_CAN_ICONIZE_FRAME:
             return true;
 
-        case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
-            return false;
+        // TODO case wxSYS_CAN_DRAW_FRAME_DECORATIONS:
+        // TODO case wxSYS_TABLET_PRESENT:
+
+        default:
+            break;
     }
 
     return false;