summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-06-15 14:48:59 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-06-15 14:48:59 -0400
commit30ce0ba5ef5256f42b36d6f4194bf444941ad66d (patch)
treef72bb31d48c00dd8b1dc8b3c9108113916636cdc /src/mainwindow.cpp
parentd7dc13e3b9ac2932531d9518c9d303cd302e1539 (diff)
rebase to statusbar
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index b5e9c320..4ba5e6ad 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -740,8 +740,8 @@ void MainWindow::updatePinnedExecutables()
QAction *exeAction = new QAction(
iconForExecutable(exe.binaryInfo().filePath()), exe.title());
- exeAction->setObjectName(QString("custom__") + iter->m_Title);
- exeAction->setStatusTip(iter->m_BinaryInfo.filePath());
+ exeAction->setObjectName(QString("custom__") + exe.title());
+ exeAction->setStatusTip(exe.binaryInfo().filePath());
if (!connect(exeAction, SIGNAL(triggered()), this, SLOT(startExeAction()))) {
qDebug("failed to connect trigger?");