diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2011-02-26 22:39:23 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2011-02-26 22:39:23 +0100 |
commit | b9b36572d95b1a1583ff352631cf4a89d6dd8227 (patch) | |
tree | cddb2fcd9237bb20f0f2941d5ff8e8188cdbf828 /xmlscript | |
parent | 063152696fb70c40dddb0eaf1e1a8cc9c8594362 (diff) |
Remove "using namespace ::rtl"
Diffstat (limited to 'xmlscript')
-rw-r--r-- | xmlscript/source/xml_helper/xml_byteseq.cxx | 2 | ||||
-rw-r--r-- | xmlscript/source/xml_helper/xml_element.cxx | 3 | ||||
-rw-r--r-- | xmlscript/source/xmllib_imexp/xmllib_export.cxx | 3 | ||||
-rw-r--r-- | xmlscript/source/xmlmod_imexp/xmlmod_export.cxx | 3 |
4 files changed, 6 insertions, 5 deletions
diff --git a/xmlscript/source/xml_helper/xml_byteseq.cxx b/xmlscript/source/xml_helper/xml_byteseq.cxx index d23e12d671c3..e1208e8a0774 100644 --- a/xmlscript/source/xml_helper/xml_byteseq.cxx +++ b/xmlscript/source/xml_helper/xml_byteseq.cxx @@ -34,11 +34,11 @@ #include <xmlscript/xml_helper.hxx> -using namespace rtl; using namespace osl; using namespace com::sun::star; using namespace com::sun::star::uno; +using ::rtl::ByteSequence; namespace xmlscript { diff --git a/xmlscript/source/xml_helper/xml_element.cxx b/xmlscript/source/xml_helper/xml_element.cxx index 1eae9b80d590..cd1fe1a0fc33 100644 --- a/xmlscript/source/xml_helper/xml_element.cxx +++ b/xmlscript/source/xml_helper/xml_element.cxx @@ -31,11 +31,10 @@ #include <xmlscript/xml_helper.hxx> -using namespace rtl; using namespace com::sun::star; using namespace com::sun::star::uno; - +using ::rtl::OUString; namespace xmlscript { diff --git a/xmlscript/source/xmllib_imexp/xmllib_export.cxx b/xmlscript/source/xmllib_imexp/xmllib_export.cxx index d731fed9f10b..7684cef4fe8e 100644 --- a/xmlscript/source/xmllib_imexp/xmllib_export.cxx +++ b/xmlscript/source/xmllib_imexp/xmllib_export.cxx @@ -34,7 +34,8 @@ using namespace com::sun::star::uno; using namespace com::sun::star; -using namespace rtl; + +using ::rtl::OUString; namespace xmlscript { diff --git a/xmlscript/source/xmlmod_imexp/xmlmod_export.cxx b/xmlscript/source/xmlmod_imexp/xmlmod_export.cxx index 782e6d343818..aeb39a6df1ef 100644 --- a/xmlscript/source/xmlmod_imexp/xmlmod_export.cxx +++ b/xmlscript/source/xmlmod_imexp/xmlmod_export.cxx @@ -34,7 +34,8 @@ using namespace com::sun::star::uno; using namespace com::sun::star; -using namespace rtl; + +using ::rtl::OUString; namespace xmlscript { |