summaryrefslogtreecommitdiff
path: root/include/vcl/abstdlg.hxx
diff options
context:
space:
mode:
authorYusuf Keten <ketenyusuf@gmail.com>2020-07-19 20:22:23 +0300
committerMuhammet Kara <muhammet.kara@collabora.com>2020-07-21 22:25:13 +0200
commit6e50e03262aa12921f108b502d3c76ce983d54f1 (patch)
treef39f736608778299607de1ab259c146cdeba6302 /include/vcl/abstdlg.hxx
parent0587c88e23b4d3d1a0504cd4c6cf1d51fa9ff498 (diff)
tdf#133026: Additions - Parameter support to UNO Command
After this patch, parameter support to uno command(.uno:AdditionsDialog) will be available. To use parameter, add "?AdditionsTag:string=YourParameter" to UNO command. Parameters are the tags of extensions on webpage. Change-Id: I0072c7340bda14ee13c21c347e06a04545cba69a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99007 Tested-by: Jenkins Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com>
Diffstat (limited to 'include/vcl/abstdlg.hxx')
-rw-r--r--include/vcl/abstdlg.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/abstdlg.hxx b/include/vcl/abstdlg.hxx
index 862aa973f2bc..8f8c334118fd 100644
--- a/include/vcl/abstdlg.hxx
+++ b/include/vcl/abstdlg.hxx
@@ -191,7 +191,7 @@ public:
// create additions dialog
virtual VclPtr<AbstractAdditionsDialog>
- CreateAdditionsDialog(weld::Window* pParent) = 0;
+ CreateAdditionsDialog(weld::Window* pParent, const OUString& sAdditionsTag) = 0;
// create info dialog to show tip-of-the-day
virtual VclPtr<AbstractTipOfTheDayDialog>