From c911cde122b05240d8446821d837b307c958a23a Mon Sep 17 00:00:00 2001 From: Fabien Poussin Date: Sat, 22 Apr 2017 16:51:00 +0200 Subject: [PATCH] [GUI] Removed unused connections --- GUI/src/mainwindow.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/GUI/src/mainwindow.cpp b/GUI/src/mainwindow.cpp index 3bd7213..09bad1b 100755 --- a/GUI/src/mainwindow.cpp +++ b/GUI/src/mainwindow.cpp @@ -287,8 +287,6 @@ void MainWindow::setupConnections(void) QObject::connect(mMainUi->actionConnect, SIGNAL(triggered()), this, SLOT(connectMtl())); QObject::connect(mMainUi->actionDisconnect, SIGNAL(triggered()), this, SLOT(disconnectMtl())); QObject::connect(mMainUi->actionUpdate, SIGNAL(triggered()), this, SLOT(showUpdateDialog())); - QObject::connect(mMainUi->actionImport, SIGNAL(triggered()), this, SLOT(importHrc())); - QObject::connect(mMainUi->actionExport, SIGNAL(triggered()), this, SLOT(exportHrc())); QObject::connect(mMainUi->actionEnglish, SIGNAL(triggered()), this, SLOT(setLanguageEnglish())); QObject::connect(mMainUi->actionFran_ais, SIGNAL(triggered()), this, SLOT(setLanguageFrench())); QObject::connect(mMainUi->actionShowHelpIndex, SIGNAL(triggered()), this, SLOT(showHelp()));