]> git.lyx.org Git - lyx.git/blobdiff - src/support/FileName.cpp
add generic helper class for calling functions in gui thread
[lyx.git] / src / support / FileName.cpp
index e68d1f71906669d7af064e27a97eac1a2521eecb..54c6fc9fd9859c909fdb1871867176901dab0e05 100644 (file)
@@ -1109,7 +1109,7 @@ string DocFileName::mangledFileName(string const & dir) const
        // in the name.
        static string const keep = "abcdefghijklmnopqrstuvwxyz"
                                   "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
-                                  "+,-0123456789;=";
+                                  "+-0123456789;=";
        string::size_type pos = 0;
        while ((pos = mname.find_first_not_of(keep, pos)) != string::npos)
                mname[pos++] = '_';