From 60775306ead382e4af6aa1f8d73ff9fedb3ddbc6 Mon Sep 17 00:00:00 2001 From: Sander Jansen Date: Fri, 15 May 2015 21:39:34 -0500 Subject: [PATCH] Fix code styling --- taglib/mpeg/id3v2/frames/chapterframe.cpp | 8 ++++---- taglib/mpeg/id3v2/frames/synchronizedlyricsframe.cpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/taglib/mpeg/id3v2/frames/chapterframe.cpp b/taglib/mpeg/id3v2/frames/chapterframe.cpp index bd3160e2..f96fad30 100644 --- a/taglib/mpeg/id3v2/frames/chapterframe.cpp +++ b/taglib/mpeg/id3v2/frames/chapterframe.cpp @@ -221,13 +221,13 @@ void ChapterFrame::parseFields(const ByteVector &data) int pos = 0, embPos = 0; d->elementID = readStringField(data, String::Latin1, &pos).data(String::Latin1); d->elementID.append(char(0)); - d->startTime = data.toUInt(pos,true); + d->startTime = data.toUInt(pos, true); pos += 4; - d->endTime = data.toUInt(pos,true); + d->endTime = data.toUInt(pos, true); pos += 4; - d->startOffset = data.toUInt(pos,true); + d->startOffset = data.toUInt(pos, true); pos += 4; - d->endOffset = data.toUInt(pos,true); + d->endOffset = data.toUInt(pos, true); pos += 4; size -= pos; diff --git a/taglib/mpeg/id3v2/frames/synchronizedlyricsframe.cpp b/taglib/mpeg/id3v2/frames/synchronizedlyricsframe.cpp index 966c255a..86c11f7a 100644 --- a/taglib/mpeg/id3v2/frames/synchronizedlyricsframe.cpp +++ b/taglib/mpeg/id3v2/frames/synchronizedlyricsframe.cpp @@ -193,7 +193,7 @@ void SynchronizedLyricsFrame::parseFields(const ByteVector &data) if(text.isNull() || pos + 4 > end) return; - uint time = data.toUInt(pos,true); + uint time = data.toUInt(pos, true); pos += 4; d->synchedText.append(SynchedText(time, text)); -- 2.40.0