]> git.lyx.org Git - lyx.git/blobdiff - src/font.h
small changes read changelog
[lyx.git] / src / font.h
index ed578aa3454288b7a2b9d5d187e14bf55d98985f..7e286e48f1502fc2756926a1e69cfe6850fdd507 100644 (file)
@@ -56,13 +56,13 @@ struct lyxfont {
        static
        int width(string const & s, LyXFont const & f) {
                if (s.empty()) return 0;
-               return width(s.c_str(), s.length(), f);
+               return width(s.data(), s.length(), f);
        }
        ///
-       static
-       int width(char const * s, LyXFont const & f) {
-               return width(s, strlen(s), f);
-       }
+       //static
+       //int width(char const * s, LyXFont const & f) {
+       //      return width(s, strlen(s), f);
+       //}
        ///
        static
        int signedWidth(string const & s, LyXFont const & f);