summaryrefslogtreecommitdiff
path: root/svtools/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-10-05 11:26:09 +0100
committerCaolán McNamara <caolanm@redhat.com>2018-10-05 17:12:11 +0200
commitc98578f9b8da2c9ff9525c13697ff33c4f00731d (patch)
tree22b5a463f62b949fbc5f8f1cf613cc15125ee39f /svtools/inc
parent21bd6a843de27e49fd79f6bbf4783fac8e61fcb5 (diff)
weld ExportDialog
Change-Id: I9d0f21a10708edcc7f5da14f83944da58c33b1d9 Reviewed-on: https://gerrit.libreoffice.org/61408 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools/inc')
-rw-r--r--svtools/inc/FltCallDialogParameter.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/inc/FltCallDialogParameter.hxx b/svtools/inc/FltCallDialogParameter.hxx
index 29e3fabf5fce..ddc78e6cd1ea 100644
--- a/svtools/inc/FltCallDialogParameter.hxx
+++ b/svtools/inc/FltCallDialogParameter.hxx
@@ -35,14 +35,14 @@ class Window;
struct FltCallDialogParameter
{
- VclPtr<vcl::Window> pWindow;
+ weld::Window* pWindow;
FieldUnit const eFieldUnit;
OUString aFilterExt;
// In and Out PropertySequence for all filter dialogs
css::uno::Sequence<css::beans::PropertyValue> aFilterData;
- FltCallDialogParameter(vcl::Window* pW, FieldUnit eFiUni)
+ FltCallDialogParameter(weld::Window* pW, FieldUnit eFiUni)
: pWindow(pW)
, eFieldUnit(eFiUni){};
};