]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/control.cpp
wxListCtrl column resize bug corrected
[wxWidgets.git] / src / msw / control.cpp
index 6c1cbf8c8dcbd58c6093b9c5a0ed3615b5b9f056..d027e9d5e5decc9e8391fa3c68095e52ef4046c7 100644 (file)
@@ -30,7 +30,7 @@
 
 #include "wx/msw/private.h"
 
-#if defined(__WIN95__) && !defined(__GNUWIN32__)
+#if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__)
 #include <commctrl.h>
 #endif
 
@@ -183,13 +183,8 @@ void wxControl::MSWOnMouseMove(int x, int y, WXUINT flags)
     Default();
 }
 
-long wxControl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
-{
-  return wxWindow::MSWWindowProc(nMsg, wParam, lParam);
-}
-
 bool wxControl::MSWNotify(WXWPARAM wParam, WXLPARAM lParam,
-                          WXLPARAM* WXUNUSED(result))
+                          WXLPARAM* result)
 {
 #if defined(__WIN95__)
        wxCommandEvent event(wxEVT_NULL, m_windowId);
@@ -240,7 +235,7 @@ bool wxControl::MSWNotify(WXWPARAM wParam, WXLPARAM lParam,
                }
 */
                default:
-                       return FALSE;
+            return wxWindow::MSWNotify(wParam, lParam, result);
        }
 
     event.SetEventType(eventType);