]> git.saurik.com Git - wxWidgets.git/commitdiff
don't use WPARAM in the header (build fix after r59336)
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 5 Mar 2009 16:32:56 +0000 (16:32 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 5 Mar 2009 16:32:56 +0000 (16:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59344 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/treectrl.h
src/msw/treectrl.cpp

index a2a86df75a37e6cda6162dc62596e1b76a489fe8..18df088b58521f11196efa39e6f6fbd2343e3ebf 100644 (file)
@@ -247,7 +247,7 @@ protected:
     // handle a key event in a multi-selection control
     //
     // return true if the key was processed, false otherwise
-    bool MSWHandleSelectionKey(WPARAM vkey);
+    bool MSWHandleSelectionKey(unsigned vkey);
 
 
     // data used only while editing the item label:
index 72fa295d374ff94249dfecde6b6c237bf9b43d8d..1f45e5b01e49dfede4a8236a5944e1f31b2ff01b 100644 (file)
@@ -2131,7 +2131,7 @@ bool wxTreeCtrl::MSWCommand(WXUINT cmd, WXWORD id_)
     return true;
 }
 
-bool wxTreeCtrl::MSWHandleSelectionKey(WPARAM vkey)
+bool wxTreeCtrl::MSWHandleSelectionKey(unsigned vkey)
 {
     const bool bCtrl = wxIsCtrlDown();
     const bool bShift = wxIsShiftDown();