diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2011-03-02 21:53:12 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2011-03-02 21:53:12 +0100 |
commit | 933e22880b2d5d9c6dd6e3e05c30d6f0ced55508 (patch) | |
tree | 24b423cb78e10cb8435e778b34ca6d3a3b22ae4c /cpputools | |
parent | 2ed29e98dac6e6f4827ddb72e300f2cc1c26024f (diff) |
Remove "using namespace ::rtl"
Diffstat (limited to 'cpputools')
-rw-r--r-- | cpputools/source/sp2bv/sp2bv.cxx | 4 | ||||
-rw-r--r-- | cpputools/source/unoexe/unoexe.cxx | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/cpputools/source/sp2bv/sp2bv.cxx b/cpputools/source/sp2bv/sp2bv.cxx index 7ae8cabc05bb..27231080b3a3 100644 --- a/cpputools/source/sp2bv/sp2bv.cxx +++ b/cpputools/source/sp2bv/sp2bv.cxx @@ -33,10 +33,6 @@ #include "rtl/ustring.hxx" #include "rtl/ustrbuf.h" - - -using namespace rtl; - static sal_Bool hasOption(char const * szOption, int argc, char** argv); diff --git a/cpputools/source/unoexe/unoexe.cxx b/cpputools/source/unoexe/unoexe.cxx index 7d73bb15be77..fef9d5ff666a 100644 --- a/cpputools/source/unoexe/unoexe.cxx +++ b/cpputools/source/unoexe/unoexe.cxx @@ -74,7 +74,6 @@ #endif using namespace std; -using namespace rtl; using namespace osl; using namespace cppu; using namespace com::sun::star::uno; @@ -85,6 +84,11 @@ using namespace com::sun::star::connection; using namespace com::sun::star::bridge; using namespace com::sun::star::container; +using ::rtl::OUString; +using ::rtl::OString; +using ::rtl::OUStringToOString; +using ::rtl::OUStringBuffer; + namespace unoexe { |