mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Revert r34122, which doesn't help.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34124 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
a37feaf896
commit
bce28182d5
@ -29,13 +29,13 @@ FuncRequest const FuncRequest::unknown(LFUN_UNKNOWN_ACTION);
|
||||
FuncRequest const FuncRequest::noaction(LFUN_NOACTION);
|
||||
|
||||
FuncRequest::FuncRequest(Origin o)
|
||||
: action_(LFUN_NOACTION), argument_(), origin_(o), x_(0), y_(0),
|
||||
: action_(LFUN_NOACTION), origin_(o), x_(0), y_(0),
|
||||
button_(mouse_button::none)
|
||||
{}
|
||||
|
||||
|
||||
FuncRequest::FuncRequest(FuncCode act, Origin o)
|
||||
: action_(act), argument_(), origin_(o), x_(0), y_(0),
|
||||
: action_(act), origin_(o), x_(0), y_(0),
|
||||
button_(mouse_button::none)
|
||||
{}
|
||||
|
||||
@ -54,7 +54,7 @@ FuncRequest::FuncRequest(FuncCode act, string const & arg, Origin o)
|
||||
|
||||
FuncRequest::FuncRequest(FuncCode act, int ax, int ay,
|
||||
mouse_button::state but, Origin o)
|
||||
: action_(act), argument_(), origin_(o), x_(ax), y_(ay), button_(but)
|
||||
: action_(act), origin_(o), x_(ax), y_(ay), button_(but)
|
||||
{}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user