From f86b075ebe0ce6abbe573b0663275de7baa0bd57 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 31 Jan 2014 17:25:55 +0000 Subject: drop unused resource id argument it's the wrong resource id anyway Change-Id: Ie1880d2b745f3da6ddf173d98b326aa2d45ce0fd --- cui/source/factory/dlgfact.cxx | 4 ++-- cui/source/factory/dlgfact.hxx | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) (limited to 'cui/source') 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); -- cgit