]> git.lyx.org Git - features.git/blobdiff - src/tex2lyx/text.C
Get rid of some locale dependant functions
[features.git] / src / tex2lyx / text.C
index d28fdea83bc4c58cec6b3edf4510df10cff40df2..fe9c2595d936972f26a9ede43297b6413f08ccb0 100644 (file)
@@ -262,7 +262,7 @@ bool splitLatexLength(string const & len, string & value, string & unit)
        if (contains(len, '\\'))
                unit = trim(string(len, i));
        else
-               unit = lyx::support::lowercase(trim(string(len, i)));
+               unit = support::ascii_lowercase(trim(string(len, i)));
        return true;
 }