diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-03 14:31:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-04 07:17:38 +0100 |
commit | 31b5c9b9bce461c2a9a9de99bbae2480788c19ca (patch) | |
tree | a6a855bd55c8ad5acb728606801922266ae07ef5 /include/sfx2 | |
parent | 21e0d8162a0e683558c4d042ce688fc9a6833809 (diff) |
remove SfxUsrAnyItem typedef
and rename SfxUsrAnyItem class to SfxUnoAnyItem, the choice being made
by leaving the most popular one behind
Change-Id: If3818ee0966a50e3036d7e2db951910b6282c91f
Reviewed-on: https://gerrit.libreoffice.org/47313
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/frame.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/sfx2/frame.hxx b/include/sfx2/frame.hxx index 0c6169999483..6306156c8c36 100644 --- a/include/sfx2/frame.hxx +++ b/include/sfx2/frame.hxx @@ -193,12 +193,12 @@ public: SfxFrame* GetFrame() const { return wFrame; } }; -class SFX2_DLLPUBLIC SfxUsrAnyItem : public SfxPoolItem +class SFX2_DLLPUBLIC SfxUnoAnyItem : public SfxPoolItem { css::uno::Any aValue; public: static SfxPoolItem* CreateDefault(); - SfxUsrAnyItem( sal_uInt16 nWhich, const css::uno::Any& rAny ); + SfxUnoAnyItem( sal_uInt16 nWhich, const css::uno::Any& rAny ); const css::uno::Any& GetValue() const { return aValue; } virtual bool operator==( const SfxPoolItem& ) const override; @@ -225,8 +225,6 @@ public: virtual bool PutValue( const css::uno::Any& rVal, sal_uInt8 nMemberId ) override; }; -typedef SfxUsrAnyItem SfxUnoAnyItem; - #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |