Skip to content

Commit f53aa30

Browse files
committedSep 14, 2012
set parent of QgsRasterLayerSaveAsDialog to inherit css
1 parent 77241dd commit f53aa30

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4011,7 +4011,10 @@ void QgisApp::saveAsRasterFile()
40114011
return;
40124012
}
40134013

4014-
QgsRasterLayerSaveAsDialog d( rasterLayer, rasterLayer->dataProvider(), mMapCanvas->extent(), rasterLayer->crs(), mMapCanvas->mapRenderer()->destinationCrs() );
4014+
QgsRasterLayerSaveAsDialog d( rasterLayer, rasterLayer->dataProvider(),
4015+
mMapCanvas->extent(), rasterLayer->crs(),
4016+
mMapCanvas->mapRenderer()->destinationCrs(),
4017+
this );
40154018
if ( d.exec() == QDialog::Accepted )
40164019
{
40174020
QgsRasterFileWriter fileWriter( d.outputFileName() );

0 commit comments

Comments
 (0)
Please sign in to comment.