summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-02-22 16:41:32 +0000
committerCaolán McNamara <caolanm@redhat.com>2019-02-22 22:10:25 +0100
commit6e65d9184a5525f303f75fa0dd1cfc8a401f5bc6 (patch)
treef754bb8fd8cb04d1f53630f1f71f0d605ec89deb /include
parent298d5ee4fae0c45e2dc3927a5399edc0257c75cd (diff)
weld SvxScriptSelectorDialog
Change-Id: I885acfcdfd9544d7f4eb0e602a7acf0215cb9d92 Reviewed-on: https://gerrit.libreoffice.org/68220 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/app.hxx2
-rw-r--r--include/sfx2/sfxdlg.hxx7
-rw-r--r--include/svx/svxdlg.hxx7
3 files changed, 5 insertions, 11 deletions
diff --git a/include/sfx2/app.hxx b/include/sfx2/app.hxx
index 27653aed3e98..2cbab66b9ec4 100644
--- a/include/sfx2/app.hxx
+++ b/include/sfx2/app.hxx
@@ -162,7 +162,7 @@ public:
// Basic/Scripting
static bool IsXScriptURL( const OUString& rScriptURL );
- static OUString ChooseScript();
+ static OUString ChooseScript(weld::Window *pParent);
static void MacroOrganizer( sal_Int16 nTabId );
static ErrCode CallBasic( const OUString&, BasicManager*, SbxArray *pArgs, SbxValue *pRet );
static ErrCode CallAppBasic( const OUString& i_macroName )
diff --git a/include/sfx2/sfxdlg.hxx b/include/sfx2/sfxdlg.hxx
index 7eceac3f0ff3..48b6b965b64d 100644
--- a/include/sfx2/sfxdlg.hxx
+++ b/include/sfx2/sfxdlg.hxx
@@ -142,11 +142,8 @@ public:
virtual VclPtr<SfxAbstractLinksDialog> CreateLinksDialog(weld::Window* pParent, sfx2::LinkManager* pMgr, bool bHTML=false, sfx2::SvBaseLink* p=nullptr) = 0;
virtual VclPtr<VclAbstractDialog> CreateSvxScriptOrgDialog(weld::Window* pParent, const OUString& rLanguage) = 0;
- virtual VclPtr<AbstractScriptSelectorDialog>
- CreateScriptSelectorDialog(
- vcl::Window* pParent,
- const css::uno::Reference< css::frame::XFrame >& _rxFrame
- ) = 0;
+ virtual VclPtr<AbstractScriptSelectorDialog> CreateScriptSelectorDialog(weld::Window* pParent,
+ const css::uno::Reference< css::frame::XFrame >& rxFrame) = 0;
virtual VclPtr<VclAbstractDialog> CreateScriptErrorDialog( const css::uno::Any& rException ) = 0;
diff --git a/include/svx/svxdlg.hxx b/include/svx/svxdlg.hxx
index 59f0fa51908e..b1b67ca33f2d 100644
--- a/include/svx/svxdlg.hxx
+++ b/include/svx/svxdlg.hxx
@@ -432,11 +432,8 @@ public:
virtual DialogGetRanges GetDialogGetRangesFunc() = 0;
- virtual VclPtr<AbstractScriptSelectorDialog>
- CreateScriptSelectorDialog(
- vcl::Window* pParent,
- const css::uno::Reference< css::frame::XFrame >& _rxFrame
- ) override = 0;
+ virtual VclPtr<AbstractScriptSelectorDialog> CreateScriptSelectorDialog(weld::Window* pParent,
+ const css::uno::Reference< css::frame::XFrame >& rxFrame) override = 0;
virtual VclPtr<VclAbstractDialog> CreateScriptErrorDialog(const css::uno::Any& rException) override = 0;