diff options
author | nils <[email protected]> | 2016-02-07 13:04:17 +0000 |
---|---|---|
committer | nils <[email protected]> | 2016-02-07 13:04:17 +0000 |
commit | f94e3f2b3cd982f825d5e485834ea9389060adaa (patch) | |
tree | f99d95c9164aef16e05164aa1ac7fb10bcbc1f5e /attachments.cpp | |
parent | encrypt to self (diff) | |
download | gpg4usb-f94e3f2b3cd982f825d5e485834ea9389060adaa.tar.gz gpg4usb-f94e3f2b3cd982f825d5e485834ea9389060adaa.zip |
refactored slots and signals
Diffstat (limited to 'attachments.cpp')
-rw-r--r-- | attachments.cpp | 4 |
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(); |