Skip to content

Commit

Permalink
WPL Parser: Remove out starting whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
smithjd15 committed Mar 28, 2022
1 parent f1c6377 commit ed5dbb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/playlistparsers/wplparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ void WplParser::Save(const SongList& songs, QIODevice* device, const QDir& dir,
s.endGroup();

QXmlStreamWriter writer(device);
writer.writeProcessingInstruction("wpl", "version=\"1.0\"");
writer.setAutoFormatting(true);
writer.setAutoFormattingIndent(2);
writer.writeProcessingInstruction("wpl", "version=\"1.0\"");

StreamElement smil("smil", &writer);

Expand Down

0 comments on commit ed5dbb4

Please sign in to comment.