]> git.lyx.org Git - lyx.git/blobdiff - src/support/docstring.cpp
Use *.* to select all files in the file selection dialog on Windows. Using shortcuts...
[lyx.git] / src / support / docstring.cpp
index 8a59d40d4f78e7957ee6275b59f6b327ef646e0f..0f9d43776f7b0de9cb6cb5781b129a0e07a783c2 100644 (file)
@@ -18,6 +18,7 @@
 
 #include <locale>
 #include <iostream>
+#include <typeinfo>
 
 #include <QFile>
 
@@ -596,8 +597,8 @@ protected:
                        for (; iit != eit; ++iit) {
                                s += *iit;
                                ++n;
-                               bool true_ok = prefixIs(truename, s);
-                               bool false_ok = prefixIs(falsename, s);
+                               bool true_ok = support::prefixIs(truename, s);
+                               bool false_ok = support::prefixIs(falsename, s);
                                if (!true_ok && !false_ok) {
                                        ++iit;
                                        ok = false;