aboutsummaryrefslogtreecommitdiffstats
path: root/attachments.cpp
diff options
context:
space:
mode:
authornils <[email protected]>2016-02-07 13:04:17 +0000
committernils <[email protected]>2016-02-07 13:04:17 +0000
commitf94e3f2b3cd982f825d5e485834ea9389060adaa (patch)
treef99d95c9164aef16e05164aa1ac7fb10bcbc1f5e /attachments.cpp
parentencrypt to self (diff)
downloadgpg4usb-f94e3f2b3cd982f825d5e485834ea9389060adaa.tar.gz
gpg4usb-f94e3f2b3cd982f825d5e485834ea9389060adaa.zip
refactored slots and signals
Diffstat (limited to 'attachments.cpp')
-rw-r--r--attachments.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/attachments.cpp b/attachments.cpp
index 8158da6..a30f33e 100644
--- a/attachments.cpp
+++ b/attachments.cpp
@@ -78,7 +78,7 @@ void Attachments::createActions()
saveFileAct = new QAction(tr("Save File"), this);
saveFileAct->setToolTip(tr("Save this file"));
saveFileAct->setIcon(QIcon(":filesave.png"));
- connect(saveFileAct, SIGNAL(triggered()), this, SLOT(saveFile()));
+ connect(saveFileAct, SIGNAL(triggered()), this, SLOT(slotSaveFile()));
openFileAct = new QAction(tr("Open File"), this);
openFileAct->setToolTip(tr("Open this file"));
@@ -87,7 +87,7 @@ void Attachments::createActions()
}
-void Attachments::saveFile()
+void Attachments::slotSaveFile()
{
QModelIndexList indexes = tableView->selectionModel()->selection().indexes();