Skip to content

Commit 15d28d8

Browse files
author
homann
committedJan 1, 2007
i18n fix filename, port r6370 into trunk
git-svn-id: http://svn.osgeo.org/qgis/trunk@6371 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent d792be4 commit 15d28d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/plugins/georeferencer/qgsimagewarper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ void QgsImageWarper::warp(const QString& input, const QString& output,
6262
char **papszOptions = NULL;
6363
papszOptions = CSLSetNameValue(papszOptions, "INIT_DEST", "NO_DATA");
6464
GDALDataset* hDstDS =
65-
driver->Create((const char*)output, newXSize, newYSize,
65+
driver->Create(QFile::encodeName(output).constData(), newXSize, newYSize,
6666
hSrcDS->GetRasterCount(),
6767
hSrcDS->GetRasterBand(1)->GetRasterDataType(),
6868
papszOptions);

0 commit comments

Comments
 (0)
Please sign in to comment.