From e35f2f0631784c1f58dbef5cb819a48b3a4703f4 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Thu, 25 Apr 2013 17:02:30 +0200 Subject: don't pollute global namespace Change-Id: Iffeeffb015c59ea787838c737c6a11f6fbef2794 --- include/test/beans/xpropertyset.hxx | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'include/test') diff --git a/include/test/beans/xpropertyset.hxx b/include/test/beans/xpropertyset.hxx index b5962665f56b..2d2b7df7842b 100644 --- a/include/test/beans/xpropertyset.hxx +++ b/include/test/beans/xpropertyset.hxx @@ -21,8 +21,6 @@ #include -using namespace com::sun::star; - namespace apitest { class OOO_DLLPUBLIC_TEST XPropertySet @@ -30,7 +28,7 @@ class OOO_DLLPUBLIC_TEST XPropertySet public: virtual ~XPropertySet(); - virtual uno::Reference init() = 0; + virtual css::uno::Reference init() = 0; void testGetPropertySetInfo(); void testAddPropertyChangeListener(); @@ -44,9 +42,9 @@ protected: virtual bool isPropertyValueChangeable(const OUString& rName); private: - void fillPropsToTest(const uno::Reference& xPropInfo); + void fillPropsToTest(const css::uno::Reference& xPropInfo); static bool getSinglePropertyValue( - const uno::Reference& xPropSet, const OUString& rName); + const css::uno::Reference& xPropSet, const OUString& rName); struct OOO_DLLPUBLIC_TEST PropsToTest { -- cgit