mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 01:59:52 -06:00
Upgrade WX to r74856, mainly to support @2x.
This commit is contained in:
5
Externals/wxWidgets3/include/wx/uiaction.h
vendored
5
Externals/wxWidgets3/include/wx/uiaction.h
vendored
@ -4,7 +4,6 @@
|
||||
// Author: Kevin Ollivier, Steven Lamerton, Vadim Zeitlin
|
||||
// Modified by:
|
||||
// Created: 2010-03-06
|
||||
// RCS-ID: $Id: uiaction.h 69762 2011-11-15 15:56:55Z VZ $
|
||||
// Copyright: (c) Kevin Ollivier
|
||||
// (c) 2010 Steven Lamerton
|
||||
// (c) 2010 Vadim Zeitlin
|
||||
@ -45,7 +44,9 @@ public:
|
||||
bool MouseDblClick(int button = wxMOUSE_BTN_LEFT);
|
||||
bool MouseDragDrop(long x1, long y1, long x2, long y2,
|
||||
int button = wxMOUSE_BTN_LEFT);
|
||||
|
||||
bool MouseDragDrop(const wxPoint& p1, const wxPoint& p2,
|
||||
int button = wxMOUSE_BTN_LEFT)
|
||||
{ return MouseDragDrop(p1.x, p1.y, p2.x, p2.y, button); }
|
||||
|
||||
// Keyboard simulation
|
||||
// -------------------
|
||||
|
Reference in New Issue
Block a user