diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2011-02-26 22:26:51 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2011-02-26 22:26:51 +0100 |
commit | 063152696fb70c40dddb0eaf1e1a8cc9c8594362 (patch) | |
tree | be25b09f326080fd131fddcbfb30dfda986b7104 /scripting/source | |
parent | f2554b7867ca50f513aee6190ef3e3552d0880ff (diff) |
Remove "using namespace ::rtl"
Diffstat (limited to 'scripting/source')
-rw-r--r-- | scripting/source/storage/XMLElement.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripting/source/storage/XMLElement.cxx b/scripting/source/storage/XMLElement.cxx index 6d9ff7bc195f..b80efd4b2ad5 100644 --- a/scripting/source/storage/XMLElement.cxx +++ b/scripting/source/storage/XMLElement.cxx @@ -31,10 +31,12 @@ #include "XMLElement.hxx" #include <osl/diagnose.h> -using namespace rtl; using namespace com::sun::star; using namespace com::sun::star::uno; +using ::rtl::OUString; +using ::rtl::OUStringToOString; + namespace scripting_impl { |