diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2015-11-08 10:58:59 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-08 09:44:55 -0800 |
commit | 287977b04c876cea73491d902a9f7353785730ec (patch) | |
tree | a6e6baf0a1344ddc3d72e6e315ad71d954bbe45e /desktop-widgets/mainwindow.cpp | |
parent | 486857f2b4264295a078de5dad541122186d22ab (diff) | |
download | subsurface-287977b04c876cea73491d902a9f7353785730ec.tar.gz |
Change from uploadCurrentDive to requestUpload call
Since we can't forbit the plugins to upload more than just the
current dive, it's better to change the name of the call.
also add a stub to make sure it's calling the right method inside
the plugin.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/mainwindow.cpp')
-rw-r--r-- | desktop-widgets/mainwindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/desktop-widgets/mainwindow.cpp b/desktop-widgets/mainwindow.cpp index 740b38f76..e727fce6c 100644 --- a/desktop-widgets/mainwindow.cpp +++ b/desktop-widgets/mainwindow.cpp @@ -268,6 +268,7 @@ MainWindow::MainWindow() : QMainWindow(), share_on->setData(QVariant::fromValue(plugin)); ui.menuShare_on->addAction(share_on); connections->addAction(toggle_connection); + connect(share_on, &QAction::triggered, [plugin](bool triggered) { plugin->requestUpload(); } } ui.menuShare_on->addSeparator(); ui.menuShare_on->addMenu(connections); |