diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-05-02 10:47:41 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2018-05-02 10:47:41 +0000 |
| commit | ee5abc61159a81f52f0f3d1fcd2f1fbc13f3b4a2 (patch) | |
| tree | 41a421a7fc1d042a348ec212fb967a124f0b9bd2 /src/plugins/General | |
| parent | 9bdd208bbb16ec15d52653a9913789b44b3b28b3 (diff) | |
| download | qmmp-ee5abc61159a81f52f0f3d1fcd2f1fbc13f3b4a2.tar.gz qmmp-ee5abc61159a81f52f0f3d1fcd2f1fbc13f3b4a2.tar.bz2 qmmp-ee5abc61159a81f52f0f3d1fcd2f1fbc13f3b4a2.zip | |
refactoring
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7944 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General')
| -rw-r--r-- | src/plugins/General/statusicon/statusicon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/General/statusicon/statusicon.cpp b/src/plugins/General/statusicon/statusicon.cpp index a4b96b7d3..69ed86387 100644 --- a/src/plugins/General/statusicon/statusicon.cpp +++ b/src/plugins/General/statusicon/statusicon.cpp @@ -136,7 +136,7 @@ void StatusIcon::showMetaData() } } - QString message = m_messageFormatter.format(&info); + QString message = m_messageFormatter.format(info); if (message.isEmpty()) message = info.path().section('/',-1); @@ -146,7 +146,7 @@ void StatusIcon::showMetaData() if(m_showToolTip) { - message = m_toolTipFormatter.format(&info); + message = m_toolTipFormatter.format(info); if(message.isEmpty()) message = info.path().section('/',-1); m_tray->setToolTip(message); |
