From 933e22880b2d5d9c6dd6e3e05c30d6f0ced55508 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Wed, 2 Mar 2011 21:53:12 +0100 Subject: Remove "using namespace ::rtl" --- cppuhelper/test/testhelper.cxx | 5 ++++- cppuhelper/test/testimplhelper.cxx | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'cppuhelper/test') diff --git a/cppuhelper/test/testhelper.cxx b/cppuhelper/test/testhelper.cxx index d99fc9903387..431c3cb16251 100644 --- a/cppuhelper/test/testhelper.cxx +++ b/cppuhelper/test/testhelper.cxx @@ -50,13 +50,16 @@ #include "testhelper.hxx" -using namespace rtl; using namespace cppu; using namespace com::sun::star::uno; using namespace com::sun::star; using namespace com::sun::star::lang; using namespace com::sun::star::registry; +using ::rtl::OUString; +using ::rtl::OString; +using ::rtl::OUStringToOString; + SAL_IMPLEMENT_MAIN() { try diff --git a/cppuhelper/test/testimplhelper.cxx b/cppuhelper/test/testimplhelper.cxx index b3c2638739c3..6a5e741c4975 100644 --- a/cppuhelper/test/testimplhelper.cxx +++ b/cppuhelper/test/testimplhelper.cxx @@ -81,12 +81,15 @@ #include using namespace test; -using namespace rtl; using namespace osl; using namespace cppu; using namespace com::sun::star; using namespace com::sun::star::uno; +using ::rtl::OUString; +using ::rtl::OUStringToOString; +using ::rtl::OString; + //================================================================================================== struct TestImpl : public ImplHelper4< CA, DBA, FE, G > { -- cgit