summaryrefslogtreecommitdiff
path: root/svx/source/inc/fmitems.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/inc/fmitems.hxx')
-rw-r--r--svx/source/inc/fmitems.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/inc/fmitems.hxx b/svx/source/inc/fmitems.hxx
index afcc0499b2db..530697b3feeb 100644
--- a/svx/source/inc/fmitems.hxx
+++ b/svx/source/inc/fmitems.hxx
@@ -26,12 +26,12 @@
class FmInterfaceItem : public SfxPoolItem
{
- ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > xInterface;
+ css::uno::Reference< css::uno::XInterface > xInterface;
public:
TYPEINFO_OVERRIDE();
- FmInterfaceItem( const sal_uInt16 nId, const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& rxInterface )
+ FmInterfaceItem( const sal_uInt16 nId, const css::uno::Reference< css::uno::XInterface >& rxInterface )
:SfxPoolItem( nId )
,xInterface( rxInterface )
{}
@@ -45,7 +45,7 @@ public:
virtual SfxPoolItem* Create(SvStream &, sal_uInt16) const override;
virtual SvStream& Store(SvStream &, sal_uInt16 nItemVersion ) const override;
- const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > GetInterface() const { return xInterface; }
+ const css::uno::Reference< css::uno::XInterface > GetInterface() const { return xInterface; }
};
inline FmInterfaceItem& FmInterfaceItem::operator=( const FmInterfaceItem &rCpy )