]> 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 b4bf026e42d5bd72c9f702a3c9fae76914219fcf..cec66729742ba6efe9d1b5b72dad1773389618b6 100644 (file)
 
 #include <sstream>
 
-using std::endl;
-using std::ostringstream;
-using std::string;
+using namespace std;
+using namespace lyx::support;
 
 namespace lyx {
 
-using support::lowercase;
 
 Counter::Counter()
 {
@@ -302,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