Remove "using namespace ::rtl"
This commit is contained in:
parent
5e25f9be4e
commit
e62f74cabe
5 changed files with 14 additions and 6 deletions
|
@ -63,7 +63,6 @@
|
|||
#include "currentcontextchecker.hxx"
|
||||
#include "multi.hxx"
|
||||
|
||||
using namespace rtl;
|
||||
using namespace osl;
|
||||
using namespace cppu;
|
||||
using namespace com::sun::star::uno;
|
||||
|
@ -72,6 +71,10 @@ using namespace com::sun::star::registry;
|
|||
using namespace com::sun::star::bridge;
|
||||
using namespace test::testtools::bridgetest;
|
||||
|
||||
using ::rtl::OUString;
|
||||
using ::rtl::OString;
|
||||
using ::rtl::OUStringToOString;
|
||||
|
||||
#define SERVICENAME "com.sun.star.test.bridge.BridgeTest"
|
||||
#define IMPLNAME "com.sun.star.comp.bridge.BridgeTest"
|
||||
|
||||
|
|
|
@ -58,7 +58,6 @@
|
|||
#include "currentcontextchecker.hxx"
|
||||
#include "multi.hxx"
|
||||
|
||||
using namespace rtl;
|
||||
using namespace osl;
|
||||
using namespace cppu;
|
||||
using namespace com::sun::star::uno;
|
||||
|
@ -66,6 +65,9 @@ using namespace com::sun::star::lang;
|
|||
using namespace com::sun::star::registry;
|
||||
using namespace test::testtools::bridgetest;
|
||||
|
||||
using ::rtl::OUString;
|
||||
using ::rtl::OUStringToOString;
|
||||
|
||||
#define SERVICENAME "com.sun.star.test.bridge.CppTestObject"
|
||||
#define IMPLNAME "com.sun.star.comp.bridge.CppTestObject"
|
||||
|
||||
|
|
|
@ -37,8 +37,7 @@
|
|||
#include <uno/mapping.h>
|
||||
#include <uno/lbnames.h>
|
||||
|
||||
using namespace rtl;
|
||||
|
||||
using ::rtl::OUString;
|
||||
|
||||
namespace pseudo_uno
|
||||
{
|
||||
|
|
|
@ -40,7 +40,6 @@
|
|||
|
||||
#include <com/sun/star/test/performance/XPerformanceTest.hpp>
|
||||
|
||||
using namespace rtl;
|
||||
using namespace osl;
|
||||
using namespace cppu;
|
||||
using namespace com::sun::star::uno;
|
||||
|
@ -48,6 +47,8 @@ using namespace com::sun::star::lang;
|
|||
using namespace com::sun::star::registry;
|
||||
using namespace com::sun::star::test::performance;
|
||||
|
||||
using ::rtl::OUString;
|
||||
|
||||
#define SERVICENAME "com.sun.star.test.performance.PerformanceTestObject"
|
||||
#define IMPLNAME "com.sun.star.comp.performance.PerformanceTestObject"
|
||||
|
||||
|
|
|
@ -72,7 +72,6 @@
|
|||
|
||||
#define NLOOP 200000000
|
||||
|
||||
using namespace rtl;
|
||||
using namespace osl;
|
||||
using namespace cppu;
|
||||
using namespace com::sun::star::uno;
|
||||
|
@ -83,6 +82,10 @@ using namespace com::sun::star::bridge;
|
|||
using namespace com::sun::star::container;
|
||||
using namespace com::sun::star::test::performance;
|
||||
|
||||
using ::rtl::OUString;
|
||||
using ::rtl::OString;
|
||||
using ::rtl::OUStringToOString;
|
||||
|
||||
#define SERVICENAME "com.sun.star.test.performance.PerformanceTest"
|
||||
#define IMPLNAME "com.sun.star.comp.performance.PerformanceTest"
|
||||
|
||||
|
|
Loading…
Reference in a new issue