diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-31 17:25:55 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-31 21:21:39 +0000 |
commit | f86b075ebe0ce6abbe573b0663275de7baa0bd57 (patch) | |
tree | b95aa13eeca3dbdc7abb7e115c420ebc738cb7bf /cui/source | |
parent | c8cae05ee8cfa0742865224b31d344317ceb996f (diff) |
drop unused resource id argument
it's the wrong resource id anyway
Change-Id: Ie1880d2b745f3da6ddf173d98b326aa2d45ce0fd
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/factory/dlgfact.cxx | 4 | ||||
-rw-r--r-- | cui/source/factory/dlgfact.hxx | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx index f751bb4e585c..ea0341ece8ab 100644 --- a/cui/source/factory/dlgfact.cxx +++ b/cui/source/factory/dlgfact.cxx @@ -1536,8 +1536,8 @@ AbstractGraphicFilterDialog * AbstractDialogFactory_Impl::CreateGraphicFilterPos return 0; } -AbstractGraphicFilterDialog * AbstractDialogFactory_Impl::CreateGraphicFilterSmooth ( Window* pParent, - const Graphic& rGraphic, double nRadius, sal_uInt32) +AbstractGraphicFilterDialog * AbstractDialogFactory_Impl::CreateGraphicFilterSmooth(Window* pParent, + const Graphic& rGraphic, double nRadius) { GraphicFilterDialog* pDlg = new GraphicFilterSmooth( pParent, rGraphic, nRadius ); return new AbstractGraphicFilterDialog_Impl( pDlg ); diff --git a/cui/source/factory/dlgfact.hxx b/cui/source/factory/dlgfact.hxx index f45595274072..416a440710f2 100644 --- a/cui/source/factory/dlgfact.hxx +++ b/cui/source/factory/dlgfact.hxx @@ -667,8 +667,7 @@ public: const Graphic& rGraphic, sal_uInt16 nCount, sal_uInt32 nResId); virtual AbstractGraphicFilterDialog * CreateGraphicFilterSmooth (Window* pParent, - const Graphic& rGraphic, double nRadius, - sal_uInt32 nResId); + const Graphic& rGraphic, double nRadius); virtual AbstractGraphicFilterDialog * CreateGraphicFilterSolarize (Window* pParent, const Graphic& rGraphic, sal_uInt8 nGreyThreshold, sal_Bool bInvert); |