diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-07-01 19:53:31 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2015-07-01 19:53:31 +0000 |
| commit | bcf7e323d2f5ffc908640eade6edb3d2a8fcc758 (patch) | |
| tree | d6bbff5e43230ec8dbf1a6c1a2f4b755d66c7886 /src/qmmpui/playlistitem.cpp | |
| parent | e0aef68824bce7487669e37d90fab472dba7c11d (diff) | |
| download | qmmp-bcf7e323d2f5ffc908640eade6edb3d2a8fcc758.tar.gz qmmp-bcf7e323d2f5ffc908640eade6edb3d2a8fcc758.tar.bz2 qmmp-bcf7e323d2f5ffc908640eade6edb3d2a8fcc758.zip | |
refactoring
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5204 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/playlistitem.cpp')
| -rw-r--r-- | src/qmmpui/playlistitem.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/qmmpui/playlistitem.cpp b/src/qmmpui/playlistitem.cpp index 101b8a497..9c1b03d99 100644 --- a/src/qmmpui/playlistitem.cpp +++ b/src/qmmpui/playlistitem.cpp @@ -24,7 +24,6 @@ PlayListItem::PlayListItem() { - m_track_index = -1; m_selected = false; } @@ -43,12 +42,12 @@ bool PlayListItem::isSelected() const void PlayListItem::setTrackIndex(int number) { - m_track_index = number; + Q_UNUSED(number); } int PlayListItem::trackIndex() const { - return m_track_index; + return -1; } |
