diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-11-14 17:25:30 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-11-14 17:25:47 +0100 |
commit | c1f416feda0ef4ef215ca587b9bac03659b48c7a (patch) | |
tree | 034acd437ef021c2580682b38bd5a8361618ce93 /include/editeng | |
parent | a1115a5983e126f872c6d7f14aef8ce5bba4010a (diff) |
SvxBrushItem: Improve Referer from member to GetGraphic[Object] parameter
Change-Id: I034132c315b74d0ea5e03b7d5f7cc225a6c8164e
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/brushitem.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/editeng/brushitem.hxx b/include/editeng/brushitem.hxx index 4ef5bfd4615c..10339ac9c7dd 100644 --- a/include/editeng/brushitem.hxx +++ b/include/editeng/brushitem.hxx @@ -51,7 +51,6 @@ class EDITENG_DLLPUBLIC SvxBrushItem : public SfxPoolItem sal_Int32 nShadingValue; SvxBrushItem_Impl* pImpl; OUString maStrLink; - OUString maReferer; OUString maStrFilter; SvxGraphicPosition eGraphicPos; sal_Bool bLoadAgain; @@ -72,7 +71,7 @@ public: SvxGraphicPosition ePos, sal_uInt16 nWhich ); SvxBrushItem( const GraphicObject& rGraphicObj, SvxGraphicPosition ePos, sal_uInt16 nWhich ); - SvxBrushItem( const OUString& rLink, const OUString& rReferer, const OUString& rFilter, + SvxBrushItem( const OUString& rLink, const OUString& rFilter, SvxGraphicPosition ePos, sal_uInt16 nWhich ); SvxBrushItem( const SvxBrushItem& ); SvxBrushItem( const CntWallpaperItem&, sal_uInt16 nWhich ); @@ -106,8 +105,8 @@ public: void PurgeMedium() const; sal_uInt32 GetShadingValue() const { return nShadingValue; } - const Graphic* GetGraphic() const; - const GraphicObject* GetGraphicObject() const; + const Graphic* GetGraphic(OUString const & referer = OUString()/*TODO*/) const; + const GraphicObject* GetGraphicObject(OUString const & referer = OUString()/*TODO*/) const; OUString GetGraphicLink() const { return maStrLink; } OUString GetGraphicFilter() const { return maStrFilter; } |