summaryrefslogtreecommitdiff
path: root/cppuhelper/source/component_context.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-08-19 11:49:57 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-08-19 12:52:36 +0200
commite89e7cded7cf449807c93bd3ce35b1e1a876da3f (patch)
tree080e1734b83e74888f36d06666922384d745ee2a /cppuhelper/source/component_context.cxx
parent477e7ad9d05ccb48146c9f7e8dcbc0980c2d9481 (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.cxx6
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
{