diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-10-19 17:05:51 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-10-19 21:04:38 +0200 |
commit | 54960717cded98c5f73a752271375daf08129a18 (patch) | |
tree | e84931cd8fa7ee2b5c717c423637a22eb95d2ed5 /fpicker | |
parent | 5ed218d4ec26042f87b64a59c60373f35de962a7 (diff) |
strip Dialog ctor down
Change-Id: Ic00f5a5fe562022524c60a23509722f9e2406524
Reviewed-on: https://gerrit.libreoffice.org/81135
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/fpdialogbase.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/office/fpdialogbase.hxx b/fpicker/source/office/fpdialogbase.hxx index c49c6d56b638..5b921b9379d0 100644 --- a/fpicker/source/office/fpdialogbase.hxx +++ b/fpicker/source/office/fpdialogbase.hxx @@ -66,7 +66,7 @@ class SvtFileDialog_Base : public Dialog, public ::svt::IFilePickerController { public: SvtFileDialog_Base( vcl::Window* pParent, const OUString& rID, const OUString& rUIXMLDescription ) - : Dialog( pParent, rID, rUIXMLDescription, WindowType::MODALDIALOG, InitFlag::Default ) + : Dialog(pParent, rID, rUIXMLDescription) { } |