diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2011-03-02 22:15:02 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2011-03-02 22:15:02 +0100 |
commit | 389bc73b5f34399fa8c11c891755238a3417af50 (patch) | |
tree | 2a620177e36273aa4c563379563d7c4be315bb2a /rdbmaker/source/codemaker | |
parent | 933e22880b2d5d9c6dd6e3e05c30d6f0ced55508 (diff) |
Remove "using namespace ::rtl"
Diffstat (limited to 'rdbmaker/source/codemaker')
-rw-r--r-- | rdbmaker/source/codemaker/dependency.cxx | 4 | ||||
-rw-r--r-- | rdbmaker/source/codemaker/options.cxx | 3 | ||||
-rw-r--r-- | rdbmaker/source/codemaker/typemanager.cxx | 5 |
3 files changed, 6 insertions, 6 deletions
diff --git a/rdbmaker/source/codemaker/dependency.cxx b/rdbmaker/source/codemaker/dependency.cxx index 866abb452d5d..8df5fd4bbeff 100644 --- a/rdbmaker/source/codemaker/dependency.cxx +++ b/rdbmaker/source/codemaker/dependency.cxx @@ -30,8 +30,8 @@ #include <rtl/alloc.h> #include <codemaker/dependency.hxx> -using namespace rtl; - +using ::rtl::OString; +using ::rtl::OStringBuffer; TypeDependency::TypeDependency() { m_pImpl = new TypeDependencyImpl(); diff --git a/rdbmaker/source/codemaker/options.cxx b/rdbmaker/source/codemaker/options.cxx index 0d87f38d8786..7090e282b715 100644 --- a/rdbmaker/source/codemaker/options.cxx +++ b/rdbmaker/source/codemaker/options.cxx @@ -28,8 +28,7 @@ #include <codemaker/options.hxx> -using namespace rtl; - +using ::rtl::OString; Options::Options() { } diff --git a/rdbmaker/source/codemaker/typemanager.cxx b/rdbmaker/source/codemaker/typemanager.cxx index f4fffecb3d31..075b8f2a30dd 100644 --- a/rdbmaker/source/codemaker/typemanager.cxx +++ b/rdbmaker/source/codemaker/typemanager.cxx @@ -30,8 +30,9 @@ #include <osl/file.hxx> #include <codemaker/typemanager.hxx> -using namespace rtl; - +using ::rtl::OUString; +using ::rtl::OString; +using ::rtl::OStringToOUString; TypeManager::TypeManager() { m_pImpl = new TypeManagerImpl(); |