X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFuncRequest.cpp;h=d14503fefda271104df391c4bd6d6d627e19bad6;hb=3256dbc78a76f947080dc8e3414abc60e4b5c5af;hp=af4d97c7d70dd1435fd2333a15f8c19a7b4367ad;hpb=9383f4c3c6f9cfab2d658701ba66e2b54cd68bea;p=lyx.git diff --git a/src/FuncRequest.cpp b/src/FuncRequest.cpp index af4d97c7d7..d14503fefd 100644 --- a/src/FuncRequest.cpp +++ b/src/FuncRequest.cpp @@ -70,7 +70,7 @@ mouse_button::state FuncRequest::button() const } -void split(vector & args, string const & str) +void splitArg(vector & args, string const & str) { istringstream is(str); while (is) { @@ -93,7 +93,7 @@ void split(vector & args, string const & str) string FuncRequest::getArg(unsigned int i) const { vector args; - split(args, to_utf8(argument_)); + splitArg(args, to_utf8(argument_)); return i < args.size() ? args[i] : string(); } @@ -104,7 +104,7 @@ bool operator==(FuncRequest const & lhs, FuncRequest const & rhs) } -std::ostream & operator<<(std::ostream & os, FuncRequest const & cmd) +ostream & operator<<(ostream & os, FuncRequest const & cmd) { return os << " action: " << cmd.action