diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2011-02-27 17:05:28 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2011-02-27 17:05:28 +0100 |
commit | ac83bc28e77a2b00646ac690f88517c0ba4313c1 (patch) | |
tree | 5a8f721c67d7677710a1e98cf377c56887851553 /rsc | |
parent | 27f360b33062e463f86817ae3e9af5785ad944bf (diff) |
Remove "using namespace ::rtl"
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/source/parser/rscdb.cxx | 3 | ||||
-rw-r--r-- | rsc/source/parser/rsclex.cxx | 4 | ||||
-rw-r--r-- | rsc/source/rsc/rsc.cxx | 7 | ||||
-rw-r--r-- | rsc/source/tools/rschash.cxx | 3 | ||||
-rw-r--r-- | rsc/source/tools/rsctools.cxx | 3 |
5 files changed, 14 insertions, 6 deletions
diff --git a/rsc/source/parser/rscdb.cxx b/rsc/source/parser/rscdb.cxx index 5659c66dc460..8a0c7e517c01 100644 --- a/rsc/source/parser/rscdb.cxx +++ b/rsc/source/parser/rscdb.cxx @@ -48,7 +48,8 @@ #include <rscdb.hxx> #include <rscrsc.hxx> -using namespace rtl; +using ::rtl::OString; +using ::rtl::OStringBuffer; /************************************************************************* |* diff --git a/rsc/source/parser/rsclex.cxx b/rsc/source/parser/rsclex.cxx index a3fea2ea5172..5c38c66790ca 100644 --- a/rsc/source/parser/rsclex.cxx +++ b/rsc/source/parser/rsclex.cxx @@ -51,7 +51,9 @@ #include <rtl/textenc.h> #include <tools/list.hxx> -using namespace rtl; +using ::rtl::OString; +using ::rtl::OStringBuffer; +using ::rtl::OStringHash; const char* StringContainer::putString( const char* pString ) { diff --git a/rsc/source/rsc/rsc.cxx b/rsc/source/rsc/rsc.cxx index bf653c76badd..132d60483867 100644 --- a/rsc/source/rsc/rsc.cxx +++ b/rsc/source/rsc/rsc.cxx @@ -29,7 +29,7 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_rsc.hxx" /****************************************************************/ -/* Include File */ +/* Include File */ /****************************************************************/ #include <stdlib.h> @@ -68,7 +68,10 @@ #include <vector> -using namespace rtl; +using ::rtl::OUString; +using ::rtl::OString; +using ::rtl::OStringBuffer; +using ::rtl::OStringToOUString; /*************** F o r w a r d s *****************************************/ /*************** G l o b a l e V a r i a b l e n **********************/ diff --git a/rsc/source/tools/rschash.cxx b/rsc/source/tools/rschash.cxx index 2acf6f15e376..424b24c0246d 100644 --- a/rsc/source/tools/rschash.cxx +++ b/rsc/source/tools/rschash.cxx @@ -30,7 +30,8 @@ #include "precompiled_rsc.hxx" #include <rschash.hxx> -using namespace rtl; +using ::rtl::OString; +using ::rtl::OStringHash; AtomContainer::AtomContainer() { diff --git a/rsc/source/tools/rsctools.cxx b/rsc/source/tools/rsctools.cxx index f1202d986921..a5079d9f37d0 100644 --- a/rsc/source/tools/rsctools.cxx +++ b/rsc/source/tools/rsctools.cxx @@ -56,7 +56,8 @@ #define ONLY_NEW #endif -using namespace rtl; +using ::rtl::OUString; +using ::rtl::OUStringToOString; /****************** C o d e **********************************************/ /************************************************************************* |