summaryrefslogtreecommitdiff
path: root/include/vcl/fltcall.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-09-20 12:13:42 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-09-20 10:45:14 +0000
commitb18e1bc61ccba9d0c74274e2fe45b2b422c601cf (patch)
tree13d90e6939c5d152c30b948148125be7b0cb6f22 /include/vcl/fltcall.hxx
parent8a382d4ad190cf07cbd6b1fd6b903975134b0cf1 (diff)
loplugin:unusedfields
Change-Id: I852e98b16fdcb88b04e39d11e3101d502c918c24 Reviewed-on: https://gerrit.libreoffice.org/29078 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/vcl/fltcall.hxx')
-rw-r--r--include/vcl/fltcall.hxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/vcl/fltcall.hxx b/include/vcl/fltcall.hxx
index e5d6ca66e412..1aba65e43aae 100644
--- a/include/vcl/fltcall.hxx
+++ b/include/vcl/fltcall.hxx
@@ -34,16 +34,14 @@ struct FltCallDialogParameter
{
VclPtr<vcl::Window> pWindow;
- ResMgr* pResMgr;
FieldUnit eFieldUnit;
OUString aFilterExt;
// In and Out PropertySequence for all filter dialogs
css::uno::Sequence< css::beans::PropertyValue > aFilterData;
- FltCallDialogParameter( vcl::Window* pW, ResMgr* pRsMgr, FieldUnit eFiUni ) :
+ FltCallDialogParameter( vcl::Window* pW, FieldUnit eFiUni ) :
pWindow ( pW ),
- pResMgr ( pRsMgr ),
eFieldUnit ( eFiUni ) {};
};