summaryrefslogtreecommitdiffstats
path: root/src/dlghidden.cpp
diff options
context:
space:
mode:
authorMarcos CARDINOT <mcardinot@gmail.com>2014-06-28 09:09:10 +0100
committerMarcos CARDINOT <mcardinot@gmail.com>2014-06-28 09:09:10 +0100
commit9c61ec1eac270e795f2dc8a671a7e15b845dd945 (patch)
treeeb5616207e8a98e1d2fd98da7d4c939c406da427 /src/dlghidden.cpp
parentd52044e0cc2bb00ea4b80eb950ef142075854d2a (diff)
Passing coverLocation by constant reference in loadCoverArt signals
Diffstat (limited to 'src/dlghidden.cpp')
-rw-r--r--src/dlghidden.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dlghidden.cpp b/src/dlghidden.cpp
index 87d64ae467..7d027f6df6 100644
--- a/src/dlghidden.cpp
+++ b/src/dlghidden.cpp
@@ -38,8 +38,8 @@ DlgHidden::DlgHidden(QWidget* parent, ConfigObject<ConfigValue>* pConfig,
this,
SLOT(selectionChanged(const QItemSelection&, const QItemSelection&)));
- connect(m_pTrackTableView, SIGNAL(loadCoverArt(QString, int)),
- this, SIGNAL(loadCoverArt(QString, int)));
+ connect(m_pTrackTableView, SIGNAL(loadCoverArt(const QString&, int)),
+ this, SIGNAL(loadCoverArt(const QString&, int)));
}
DlgHidden::~DlgHidden() {