summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/inc/propertysetitem.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-03 09:14:58 +0200
committerNoel Grandin <noel@peralex.com>2015-08-03 13:38:44 +0200
commit7dc5e8731fdc3a11ca429e717ec4a05e67ea1d21 (patch)
tree104e82c3fdda21d4b33c4f427cee9023377b731f /dbaccess/source/ui/inc/propertysetitem.hxx
parent5edd744d1021b41f59528a6e3a8adebfe63e6b6e (diff)
com::sun::star->css in dbaccess
Change-Id: I4fbdd3fb7d1e0ad4423148aaaed3a15aebb26d14
Diffstat (limited to 'dbaccess/source/ui/inc/propertysetitem.hxx')
-rw-r--r--dbaccess/source/ui/inc/propertysetitem.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/inc/propertysetitem.hxx b/dbaccess/source/ui/inc/propertysetitem.hxx
index ae34e761c121..fc310a3b682d 100644
--- a/dbaccess/source/ui/inc/propertysetitem.hxx
+++ b/dbaccess/source/ui/inc/propertysetitem.hxx
@@ -31,19 +31,19 @@ namespace dbaui
*/
class OPropertySetItem : public SfxPoolItem
{
- ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > m_xSet;
+ css::uno::Reference< css::beans::XPropertySet > m_xSet;
public:
TYPEINFO_OVERRIDE();
OPropertySetItem(sal_Int16 nWhich);
OPropertySetItem(sal_Int16 nWhich,
- const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxSet);
+ const css::uno::Reference< css::beans::XPropertySet >& _rxSet);
OPropertySetItem(const OPropertySetItem& _rSource);
virtual bool operator==(const SfxPoolItem& _rItem) const SAL_OVERRIDE;
virtual SfxPoolItem* Clone(SfxItemPool* _pPool = NULL) const SAL_OVERRIDE;
- ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >
+ css::uno::Reference< css::beans::XPropertySet >
getPropertySet() const { return m_xSet; }
};