summaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-04-25 17:02:30 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-04-25 22:20:04 +0200
commite35f2f0631784c1f58dbef5cb819a48b3a4703f4 (patch)
tree6b2be0f01cb204e3d860ab149004c80c5cd6012b /include/test
parent6f906d9c26e90f507299bc117dac8c9859e6b182 (diff)
don't pollute global namespace
Change-Id: Iffeeffb015c59ea787838c737c6a11f6fbef2794
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
{