]> git.lyx.org Git - lyx.git/blobdiff - src/FuncRequest.cpp
TR1: move TR1 check to config.h / buildsystem
[lyx.git] / src / FuncRequest.cpp
index e84cfa96f8c5e78122223be26bfc7fc5e7997de9..d37fd924a371bcfd3a96f74924d8f6fa0dd74010 100644 (file)
@@ -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)
 {}