summaryrefslogtreecommitdiff
path: root/cui/source/factory
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-01-31 17:25:55 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-31 21:21:39 +0000
commitf86b075ebe0ce6abbe573b0663275de7baa0bd57 (patch)
treeb95aa13eeca3dbdc7abb7e115c420ebc738cb7bf /cui/source/factory
parentc8cae05ee8cfa0742865224b31d344317ceb996f (diff)
drop unused resource id argument
it's the wrong resource id anyway Change-Id: Ie1880d2b745f3da6ddf173d98b326aa2d45ce0fd
Diffstat (limited to 'cui/source/factory')
-rw-r--r--cui/source/factory/dlgfact.cxx4
-rw-r--r--cui/source/factory/dlgfact.hxx3
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);