diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-11-07 19:07:48 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-11-07 19:07:48 +0000 |
| commit | 6d9653f4d1becfdd260f60c9177d5e3ca6dc56af (patch) | |
| tree | 124dbc0b5a094a869f2a42a8da795e017e56afe5 /src/qmmpui/songinfo.cpp | |
| parent | 7577a11147b8b931a408a3875bb1c1e25ecfb861 (diff) | |
| download | qmmp-6d9653f4d1becfdd260f60c9177d5e3ca6dc56af.tar.gz qmmp-6d9653f4d1becfdd260f60c9177d5e3ca6dc56af.tar.bz2 qmmp-6d9653f4d1becfdd260f60c9177d5e3ca6dc56af.zip | |
gcc-4.3 support
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@610 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/songinfo.cpp')
| -rw-r--r-- | src/qmmpui/songinfo.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/qmmpui/songinfo.cpp b/src/qmmpui/songinfo.cpp index 15d134723..6760a6ac4 100644 --- a/src/qmmpui/songinfo.cpp +++ b/src/qmmpui/songinfo.cpp @@ -120,22 +120,22 @@ const QString SongInfo::fileName () const return m_path.section('/',-1); } -const uint SongInfo::year () const +uint SongInfo::year () const { return m_numValues[YEAR]; } -const uint SongInfo::track () const +uint SongInfo::track () const { return m_numValues[TRACK]; } -const uint SongInfo::length () const +uint SongInfo::length () const { return m_numValues[LENGTH]; } -const bool SongInfo::isEmpty () const +bool SongInfo::isEmpty () const { return m_strValues.isEmpty(); } @@ -147,7 +147,7 @@ void SongInfo::clear () m_stream = FALSE; } -const bool SongInfo::isStream () const +bool SongInfo::isStream () const { return m_stream; } |
