X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFuncRequest.cpp;h=d37fd924a371bcfd3a96f74924d8f6fa0dd74010;hb=69036ced3765f40048d62be800c98af3ea2d1b4a;hp=e84cfa96f8c5e78122223be26bfc7fc5e7997de9;hpb=a37feaf8967cdb47908d2b6b75a80fa77cfe8378;p=lyx.git diff --git a/src/FuncRequest.cpp b/src/FuncRequest.cpp index e84cfa96f8..d37fd924a3 100644 --- a/src/FuncRequest.cpp +++ b/src/FuncRequest.cpp @@ -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) {}