diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-08-19 11:49:57 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-08-19 12:52:36 +0200 |
commit | e89e7cded7cf449807c93bd3ce35b1e1a876da3f (patch) | |
tree | 080e1734b83e74888f36d06666922384d745ee2a /cppuhelper/source/component_context.cxx | |
parent | 477e7ad9d05ccb48146c9f7e8dcbc0980c2d9481 (diff) |
Prefer using declarations over using directives
Change-Id: I1316fc4ae1d4dab91684bdc059f5c69c5e0c401a
Diffstat (limited to 'cppuhelper/source/component_context.cxx')
-rw-r--r-- | cppuhelper/source/component_context.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cppuhelper/source/component_context.cxx b/cppuhelper/source/component_context.cxx index 7d417788238f..f75891238832 100644 --- a/cppuhelper/source/component_context.cxx +++ b/cppuhelper/source/component_context.cxx @@ -60,12 +60,14 @@ #define TDMGR_SINGLETON "/singletons/com.sun.star.reflection.theTypeDescriptionManager" #define AC_SINGLETON "/singletons/com.sun.star.security.theAccessController" - using namespace ::osl; -using namespace ::rtl; using namespace ::com::sun::star::uno; using namespace ::com::sun::star; +using rtl::OUString; +using rtl::OUStringBuffer; +using rtl::OUStringHash; + namespace cppu { |