summaryrefslogtreecommitdiff
path: root/forms/source/inc/property.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/inc/property.hxx')
-rw-r--r--forms/source/inc/property.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/forms/source/inc/property.hxx b/forms/source/inc/property.hxx
index ad3cbc1b03f5..cd5ef0a92ae3 100644
--- a/forms/source/inc/property.hxx
+++ b/forms/source/inc/property.hxx
@@ -50,13 +50,13 @@ class PropertyInfoService
//..................................................................
struct PropertyAssignment
{
- ::rtl::OUString sName;
+ OUString sName;
sal_Int32 nHandle;
PropertyAssignment() { nHandle = -1; }
PropertyAssignment(const PropertyAssignment& _rSource)
:sName(_rSource.sName), nHandle(_rSource.nHandle) { }
- PropertyAssignment(const ::rtl::OUString& _rName, sal_Int32 _nHandle)
+ PropertyAssignment(const OUString& _rName, sal_Int32 _nHandle)
:sName(_rName), nHandle(_nHandle) { }
};
@@ -85,8 +85,8 @@ public:
PropertyInfoService() { }
public:
- static sal_Int32 getPropertyId(const ::rtl::OUString& _rName);
- static ::rtl::OUString getPropertyName(sal_Int32 _nHandle);
+ static sal_Int32 getPropertyId(const OUString& _rName);
+ static OUString getPropertyName(sal_Int32 _nHandle);
private:
static void initialize();
@@ -99,7 +99,7 @@ class ConcreteInfoService : public ::comphelper::IPropertyInfoService
public:
virtual ~ConcreteInfoService() {}
- virtual sal_Int32 getPreferedPropertyId(const ::rtl::OUString& _rName);
+ virtual sal_Int32 getPreferedPropertyId(const OUString& _rName);
};
//------------------------------------------------------------------------------