From 6d9653f4d1becfdd260f60c9177d5e3ca6dc56af Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Fri, 7 Nov 2008 19:07:48 +0000 Subject: gcc-4.3 support git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@610 90c681e8-e032-0410-971d-27865f9a5e38 --- src/qmmpui/songinfo.cpp | 10 +++++----- src/qmmpui/songinfo.h | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'src/qmmpui') 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; } diff --git a/src/qmmpui/songinfo.h b/src/qmmpui/songinfo.h index af49b0b67..98600f7d3 100644 --- a/src/qmmpui/songinfo.h +++ b/src/qmmpui/songinfo.h @@ -62,11 +62,11 @@ public: const QString genre () const; const QString path () const; const QString fileName () const; - const uint year () const; - const uint track () const; - const uint length () const; - const bool isEmpty () const; - const bool isStream () const; + uint year () const; + uint track () const; + uint length () const; + bool isEmpty () const; + bool isStream () const; void clear(); private: -- cgit v1.2.3-13-gbd6f