]> git.lyx.org Git - lyx.git/blobdiff - src/support/docstring.cpp
Replace the text class shared ptr by good old index-into-global-list.
[lyx.git] / src / support / docstring.cpp
index 8a59d40d4f78e7957ee6275b59f6b327ef646e0f..ff716f1e73d1a1c3a384698ae1bfc29f75fc90d0 100644 (file)
@@ -596,8 +596,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;