]> git.saurik.com Git - wxWidgets.git/commitdiff
VC warning fixes.
authorWłodzimierz Skiba <abx@abx.art.pl>
Fri, 6 May 2005 06:09:24 +0000 (06:09 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Fri, 6 May 2005 06:09:24 +0000 (06:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33965 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/main.cpp
src/msw/radiobox.cpp
src/msw/spinctrl.cpp

index e393c8081566bb7b66527f3e2d4a58a0606179e4..76b9064c08f6597f6c925f3893092d742509848b 100644 (file)
@@ -219,8 +219,11 @@ int wxEntry(int& argc, wxChar **argv)
     {
         wxFatalExit();
 
-        // this code is unreachable but put it here to suppress warnings
+#ifndef __VISUALC__
+        // this code is unreachable but put it here to suppress warnings in some compilers
+        // and disable for others to supress warnings too
         return -1;
+#endif // !__VISUALC__
     }
 }
 
index 50e27bae8dbb4b8bec190469b0eb0d8130e968bb..21fb1fd4f4ffddc4844c978138116bec23368949 100644 (file)
@@ -552,13 +552,13 @@ void wxRadioBox::DoSetSize(int x, int y, int width, int height, int sizeFlags)
 
     // if our parent had prepared a defer window handle for us, use it (unless
     // we are a top level window)
-    wxWindowMSW *parent = GetParent();
 
 #if USE_DEFERRED_SIZING
+    wxWindowMSW *parent = GetParent();
     HDWP hdwp = parent && !IsTopLevel() ? (HDWP)parent->m_hDWP : NULL;
 #else
     HDWP hdwp = 0;
-#endif    
+#endif
 
     wxMoveWindowDeferred(hdwp, this, GetHwnd(), xx, yy, width, height);
 
index 606772143fa4cb414f81def6786d8d61d2dd4a31..39960aed328749fe6025ebc65d313b2b25e38528 100644 (file)
@@ -394,7 +394,7 @@ bool wxSpinCtrl::Create(wxWindow *parent,
     // associate the text window with the spin button
     (void)::SendMessage(GetHwnd(), UDM_SETBUDDY, (WPARAM)m_hwndBuddy, 0);
 
-    if ( !value.IsEmpty() )
+    if ( !value.empty() )
     {
         SetValue(value);
     }
@@ -438,7 +438,7 @@ int wxSpinCtrl::GetValue() const
     long n;
     if ( (wxSscanf(val, wxT("%lu"), &n) != 1) )
         n = INT_MIN;
-        
+
     if (n < m_min) n = m_min;
     if (n > m_max) n = m_max;
 
@@ -573,13 +573,12 @@ void wxSpinCtrl::DoMoveWindow(int x, int y, int width, int height)
     // if our parent had prepared a defer window handle for us, use it (unless
     // we are a top level window)
     wxWindowMSW *parent = GetParent();
-    int originalX = x;
 
 #if USE_DEFERRED_SIZING
     HDWP hdwp = parent && !IsTopLevel() ? (HDWP)parent->m_hDWP : NULL;
 #else
     HDWP hdwp = 0;
-#endif    
+#endif
 
     // 1) The buddy window
     wxMoveWindowDeferred(hdwp, this, GetBuddyHwnd(),