diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2012-08-27 23:22:15 +0200 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2012-08-28 00:09:39 +0200 |
commit | a270fc8402a2c7644f7cde10ca5711dcfc281326 (patch) | |
tree | 38a66bfd4b97ca7e6d5bb5664816ee87e168428e /src/playlist_editor.cpp | |
parent | e0e787716f2fc22021c837cd93eb647ce9440b26 (diff) |
rewrite MPD::Song object
Diffstat (limited to 'src/playlist_editor.cpp')
-rw-r--r-- | src/playlist_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/playlist_editor.cpp b/src/playlist_editor.cpp index c181277c..39543344 100644 --- a/src/playlist_editor.cpp +++ b/src/playlist_editor.cpp @@ -161,7 +161,7 @@ void PlaylistEditor::Update() { for (size_t j = 0; j < myPlaylist->Items->Size(); ++j) { - if ((*it)->GetHash() == myPlaylist->Items->at(j).GetHash()) + if ((*it)->getHash() == myPlaylist->Items->at(j).getHash()) { bold = 1; break; |