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:
@@ -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:
|
||||||
|
@@ -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();
|
||||||
|
Reference in New Issue
Block a user