]> git.lyx.org Git - lyx.git/blobdiff - src/funcrequest.C
zlib stuff
[lyx.git] / src / funcrequest.C
index 7b486f199ff1cd453e286a629f37b905ba7fd9ca..4eb9e3491ba373632333954e3c68ba21e80f646c 100644 (file)
@@ -107,12 +107,12 @@ void FuncRequest::errorMessage(string const & msg) const
 
 void split(vector<string> & args, string str)
 {
-       istringstream is(str);
+       istringstream is(STRCONV(str));
        while (is) {
                char c;
                string s;
                is >> c;
-               if (c == '"') 
+               if (c == '"')
                        getline(is, s, '"');
                else {
                        is.putback(c);