Skip to content

Commit c6c27e0

Browse files
Hugo Merciermhugent
Hugo Mercier
authored andcommitted
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

+2-2
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)