summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-10-31 11:57:38 +0000
committerCaolán McNamara <caolanm@redhat.com>2018-10-31 22:08:07 +0100
commit9d1c68ae17ef566b9034478c7b29411c62684289 (patch)
tree265f9e7decdbe9dc77ff7a108d878b68ed9887a6 /include
parent97be9270868990d3d45b29724c8fdc3598d2a64c (diff)
replace StartExecuteModal with StartExecuteAsync
Change-Id: I2c0e0266f6bb468ebb5285f95d1824cf12100812 Reviewed-on: https://gerrit.libreoffice.org/62690 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/tabdlg.hxx1
-rw-r--r--include/vcl/dialog.hxx2
2 files changed, 0 insertions, 3 deletions
diff --git a/include/sfx2/tabdlg.hxx b/include/sfx2/tabdlg.hxx
index 3247da37e62f..f57fc5949ace 100644
--- a/include/sfx2/tabdlg.hxx
+++ b/include/sfx2/tabdlg.hxx
@@ -183,7 +183,6 @@ public:
void RemoveStandardButton();
short Execute() override;
- void StartExecuteModal( const Link<Dialog&,void>& rEndDialogHdl ) override;
bool StartExecuteAsync( VclAbstractDialog::AsyncContext &rCtx ) override;
void Start();
diff --git a/include/vcl/dialog.hxx b/include/vcl/dialog.hxx
index 66d6e2bccd6f..8d4c2c6e0ee2 100644
--- a/include/vcl/dialog.hxx
+++ b/include/vcl/dialog.hxx
@@ -140,7 +140,6 @@ public:
// Dialog::Execute replacement API
public:
- virtual void StartExecuteModal( const Link<Dialog&,void>& rEndDialogHdl );
long GetResult() const;
private:
bool ImplStartExecuteModal();
@@ -148,7 +147,6 @@ private:
void ImplSetModalInputMode(bool bModal);
public:
- // FIXME: Need to remove old StartExecuteModal in favour of this one.
/// Returns true if the dialog successfully starts
bool StartExecuteAsync(const std::function<void(sal_Int32)> &rEndDialogFn)
{