]> git.lyx.org Git - lyx.git/blobdiff - src/Counters.cpp
This is the first of a series of commits that will make InsetLayout a real class.
[lyx.git] / src / Counters.cpp
index ad13330cd78365f2b95831ce95fc493531b69215..cec66729742ba6efe9d1b5b72dad1773389618b6 100644 (file)
 #include <sstream>
 
 using namespace std;
+using namespace lyx::support;
 
 namespace lyx {
 
-using support::lowercase;
 
 Counter::Counter()
 {
@@ -300,7 +300,7 @@ docstring const romanCounter(int const n)
 
 docstring const lowerromanCounter(int const n)
 {
-       return support::lowercase(romanCounter(n));
+       return lowercase(romanCounter(n));
 }
 
 } // namespace anon