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 /shell | |
parent | f2554b7867ca50f513aee6190ef3e3552d0880ff (diff) |
Remove "using namespace ::rtl"
Diffstat (limited to 'shell')
-rw-r--r-- | shell/qa/recent_docs.cxx | 3 | ||||
-rw-r--r-- | shell/source/backends/gconfbe/gconfaccess.cxx | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/shell/qa/recent_docs.cxx b/shell/qa/recent_docs.cxx index b6bd9637d6b6..f90154e24727 100644 --- a/shell/qa/recent_docs.cxx +++ b/shell/qa/recent_docs.cxx @@ -41,7 +41,8 @@ //######################################## using namespace osl; -using namespace rtl; + +using ::rtl::OUString; namespace syssh = SystemShell; diff --git a/shell/source/backends/gconfbe/gconfaccess.cxx b/shell/source/backends/gconfbe/gconfaccess.cxx index 2b7e1064d326..67e9e140d9b5 100644 --- a/shell/source/backends/gconfbe/gconfaccess.cxx +++ b/shell/source/backends/gconfbe/gconfaccess.cxx @@ -51,7 +51,11 @@ namespace { namespace css = com::sun::star ; namespace uno = css::uno ; -using namespace rtl; + +using ::rtl::OUString; +using ::rtl::OString; +using ::rtl::OStringToOUString; +using ::rtl::OUStringBuffer; GConfClient* getGconfClient() { |