Skip to content

Commit c6c27e0

Browse files
Hugo Merciermhugent
authored andcommittedSep 8, 2013
Fiw world file generation (wrong line ordering)
1 parent b18f273 commit c6c27e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/app/composer/qgscomposer.cpp‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2366,9 +2366,9 @@ void QgsComposer::writeWorldFile( QString worldFileName, double a, double b, dou
23662366
// QString::number does not use locale settings (for the decimal point)
23672367
// which is what we want here
23682368
fout << QString::number(a) << "\r\n";
2369-
fout << QString::number(b) << "\r\n";
2370-
fout << QString::number(c) << "\r\n";
23712369
fout << QString::number(d) << "\r\n";
2370+
fout << QString::number(b) << "\r\n";
23722371
fout << QString::number(e) << "\r\n";
2372+
fout << QString::number(c) << "\r\n";
23732373
fout << QString::number(f) << "\r\n";
23742374
}

0 commit comments

Comments
 (0)
Please sign in to comment.