don't use WPARAM in the header (build fix after r59336)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59344 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-03-05 16:32:56 +00:00
parent 6738c4724a
commit 25f701e632
2 changed files with 2 additions and 2 deletions

View File

@@ -247,7 +247,7 @@ protected:
// handle a key event in a multi-selection control // handle a key event in a multi-selection control
// //
// return true if the key was processed, false otherwise // 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: // data used only while editing the item label:

View File

@@ -2131,7 +2131,7 @@ bool wxTreeCtrl::MSWCommand(WXUINT cmd, WXWORD id_)
return true; return true;
} }
bool wxTreeCtrl::MSWHandleSelectionKey(WPARAM vkey) bool wxTreeCtrl::MSWHandleSelectionKey(unsigned vkey)
{ {
const bool bCtrl = wxIsCtrlDown(); const bool bCtrl = wxIsCtrlDown();
const bool bShift = wxIsShiftDown(); const bool bShift = wxIsShiftDown();