Ran my whitespace fixing script -- tabs -> spaces, removes trailing spaces.

git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@738725 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
Scott Wheeler
2007-11-19 14:44:09 +00:00
parent b2e2f0bdba
commit f8736f0fe9
32 changed files with 101 additions and 101 deletions

View File

@ -40,7 +40,7 @@ namespace TagLib {
/*!
* This class implements Ogg page headers which contain the information
* about Ogg pages needed to break them into packets which can be passed on
* about Ogg pages needed to break them into packets which can be passed on
* to the codecs.
*/

View File

@ -104,7 +104,7 @@ namespace TagLib {
/*
* To keep compatibility with the current version put Vorbis in the Ogg namespace
* only in the docs and provide a typedef to make it work. In the next BIC
* version this will be removed and it will only exist in the Ogg namespace.
* version this will be removed and it will only exist in the Ogg namespace.
*/
#ifdef DOXYGEN

View File

@ -111,7 +111,7 @@ namespace TagLib {
/*
* To keep compatibility with the current version put Vorbis in the Ogg namespace
* only in the docs and provide a typedef to make it work. In the next BIC
* version this will be removed and it will only exist in the Ogg namespace.
* version this will be removed and it will only exist in the Ogg namespace.
*/
#ifdef DOXYGEN

View File

@ -83,12 +83,12 @@ String Ogg::XiphComment::comment() const
{
if(!d->fieldListMap["DESCRIPTION"].isEmpty()) {
d->commentField = "DESCRIPTION";
return d->fieldListMap["DESCRIPTION"].front();
return d->fieldListMap["DESCRIPTION"].front();
}
if(!d->fieldListMap["COMMENT"].isEmpty()) {
d->commentField = "COMMENT";
return d->fieldListMap["COMMENT"].front();
return d->fieldListMap["COMMENT"].front();
}
return String::null;
@ -263,7 +263,7 @@ ByteVector Ogg::XiphComment::render(bool addFramingBit) const
}
// Append the "framing bit".
if(addFramingBit)
data.append(char(1));

View File

@ -164,7 +164,7 @@ namespace TagLib {
/*!
* Returns true if the field is contained within the comment.
*
* \note This is safer than checking for membership in the FieldListMap.
* \note This is safer than checking for membership in the FieldListMap.
*/
bool contains(const String &key) const;