Skip to content

Commit

Permalink
Fiw world file generation (wrong line ordering)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo Mercier authored and mhugent committed Sep 8, 2013
1 parent b18f273 commit c6c27e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/composer/qgscomposer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2366,9 +2366,9 @@ void QgsComposer::writeWorldFile( QString worldFileName, double a, double b, dou
// QString::number does not use locale settings (for the decimal point)
// which is what we want here
fout << QString::number(a) << "\r\n";
fout << QString::number(b) << "\r\n";
fout << QString::number(c) << "\r\n";
fout << QString::number(d) << "\r\n";
fout << QString::number(b) << "\r\n";
fout << QString::number(e) << "\r\n";
fout << QString::number(c) << "\r\n";
fout << QString::number(f) << "\r\n";
}

0 comments on commit c6c27e0

Please sign in to comment.