summaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
Diffstat (limited to 'include/test')
-rw-r--r--include/test/beans/xpropertyset.hxx8
1 files changed, 3 insertions, 5 deletions
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 <vector>
-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<uno::XInterface> init() = 0;
+ virtual css::uno::Reference<css::uno::XInterface> init() = 0;
void testGetPropertySetInfo();
void testAddPropertyChangeListener();
@@ -44,9 +42,9 @@ protected:
virtual bool isPropertyValueChangeable(const OUString& rName);
private:
- void fillPropsToTest(const uno::Reference<beans::XPropertySetInfo>& xPropInfo);
+ void fillPropsToTest(const css::uno::Reference<css::beans::XPropertySetInfo>& xPropInfo);
static bool getSinglePropertyValue(
- const uno::Reference<beans::XPropertySet>& xPropSet, const OUString& rName);
+ const css::uno::Reference<css::beans::XPropertySet>& xPropSet, const OUString& rName);
struct OOO_DLLPUBLIC_TEST PropsToTest
{