Remove trailing whitespace

This commit is contained in:
Birunthan Mohanathas
2012-04-19 13:09:45 +03:00
parent e5ede410bc
commit 06597123b8
34 changed files with 56 additions and 56 deletions

View File

@ -281,8 +281,8 @@ void Ogg::File::writePageGroup(const List<int> &thePageGroup)
return;
// pages in the pageGroup and packets must be equivalent
// (originalSize and size of packets would not work together),
// pages in the pageGroup and packets must be equivalent
// (originalSize and size of packets would not work together),
// therefore we sometimes have to add pages to the group
List<int> pageGroup(thePageGroup);
while (!d->pages[pageGroup.back()]->header()->lastPacketCompleted()) {
@ -341,7 +341,7 @@ void Ogg::File::writePageGroup(const List<int> &thePageGroup)
if (pages.back()->header()->pageSequenceNumber() != pageGroup.back()) {
// TODO: change the internal data structure so that we don't need to hold the
// TODO: change the internal data structure so that we don't need to hold the
// complete file in memory (is unavoidable at the moment)
// read the complete stream

View File

@ -116,9 +116,9 @@ Ogg::Page::ContainsPacketFlags Ogg::Page::containsPacket(int index) const
flags = ContainsPacketFlags(flags | CompletePacket);
}
// Or if there is more than one page and the page is
// (a) the first page and it's complete or
// (b) the last page and it's complete or
// Or if there is more than one page and the page is
// (a) the first page and it's complete or
// (b) the last page and it's complete or
// (c) a page in the middle.
else if(packetCount() > 1 &&
((flags & BeginsWithPacket && !d->header.firstPacketContinued()) ||
@ -266,7 +266,7 @@ List<Ogg::Page *> Ogg::Page::paginate(const ByteVectorList &packets,
}
Page *p = new Page(packetList, streamSerialNumber, firstPage+pageIndex, continued,
lastPacketInList ? lastPacketCompleted : true,
lastPacketInList ? lastPacketCompleted : true,
isVeryLastPacket);
pageIndex++;

View File

@ -70,9 +70,9 @@ namespace TagLib {
*/
const PageHeader *header() const;
/*!
/*!
* Returns a copy of the page with \a sequenceNumber set as sequence number.
*
*
* \see header()
* \see PageHeader::setPageSequenceNumber()
*/