Skip to content

Commit

Permalink
i18n fix filename, port r6370 into trunk
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@6371 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
homann committed Jan 1, 2007
1 parent d792be4 commit 15d28d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/georeferencer/qgsimagewarper.cpp
Expand Up @@ -62,7 +62,7 @@ void QgsImageWarper::warp(const QString& input, const QString& output,
char **papszOptions = NULL;
papszOptions = CSLSetNameValue(papszOptions, "INIT_DEST", "NO_DATA");
GDALDataset* hDstDS =
driver->Create((const char*)output, newXSize, newYSize,
driver->Create(QFile::encodeName(output).constData(), newXSize, newYSize,
hSrcDS->GetRasterCount(),
hSrcDS->GetRasterBand(1)->GetRasterDataType(),
papszOptions);
Expand Down

0 comments on commit 15d28d8

Please sign in to comment.