Minor style fixes

This commit is contained in:
Sander Jansen 2015-05-16 21:32:50 -05:00
parent 90ad17b4c5
commit 47bd01ecda
2 changed files with 2 additions and 3 deletions

View File

@ -361,7 +361,7 @@ ByteVector Ogg::XiphComment::render(bool addFramingBit) const
for(PictureList::ConstIterator it = d->pictureList.begin(); it != d->pictureList.end(); ++it) {
ByteVector picture = (*it)->render().toBase64();
data.append(ByteVector::fromUInt(picture.size()+23,false));
data.append(ByteVector::fromUInt(picture.size() + 23, false));
data.append("METADATA_BLOCK_PICTURE=");
data.append(picture);
}
@ -445,7 +445,7 @@ void Ogg::XiphComment::parse(const ByteVector &data)
// Parse key and value
String key = String(entry.mid(0, sep), String::UTF8);
String value = String(entry.mid(sep+1), String::UTF8);
String value = String(entry.mid(sep + 1), String::UTF8);
addField(key, value, false);
}
}

View File

@ -25,7 +25,6 @@
#include <cstring>
#include <tbytevector.h>
#include <tbytevectorlist.h>
#include <tstring.h>
#include <cppunit/extensions/HelperMacros.h>
using namespace std;