]> git.lyx.org Git - lyx.git/blobdiff - src/gettext.C
More fixes to insettabular/text (and some missing features added).
[lyx.git] / src / gettext.C
index 9d17c623c5e9ed392b07c3212d29a557c4a08582..ef13c283eaf6b25d2f6f9e2b3441e8fc0da79eab 100644 (file)
@@ -17,7 +17,7 @@ string const _(string const & str)
        char * tmp = new char[s + 1];
        str.copy(tmp, s);
        tmp[s] = '\0';
-       string ret(_(tmp));
+       string ret(gettext(tmp));
        delete [] tmp;
        return ret;
 }