]> git.lyx.org Git - lyx.git/blobdiff - src/FuncRequest.cpp
tex2lyx: add strike-outs etc. to the TeX testfile
[lyx.git] / src / FuncRequest.cpp
index e84cfa96f8c5e78122223be26bfc7fc5e7997de9..1d98ca1ea0116fdcd707f5e8eca8a8ba3114b703 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)
 {}
 
 
@@ -74,9 +74,9 @@ namespace {
 
 // Extracts arguments from str into args. Arguments are delimted by
 // whitespace or by double quotes.
-// We extract at most max + 1 arguments, treating args[max] as 
+// We extract at most max + 1 arguments, treating args[max] as
 // continuing to eol.
-void splitArg(vector<string> & args, string const & str, 
+void splitArg(vector<string> & args, string const & str,
                unsigned int max = UINT_MAX)
 {
        istringstream is(str);
@@ -86,7 +86,7 @@ void splitArg(vector<string> & args, string const & str,
                        getline(is, s);
                        args.push_back(trim(s));
                        return;
-               }               
+               }
 
                char c;
                string s;