aboutsummaryrefslogtreecommitdiffstats
path: root/attachments.cpp
diff options
context:
space:
mode:
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();