Skip to content

Commit 9bfebb3

Browse files
committedSep 12, 2018
Fix tests
1 parent fd0d557 commit 9bfebb3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎src/gui/qgsrasterlayersaveasdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ QStringList QgsRasterLayerSaveAsDialog::createOptions() const
441441
indx = options.indexOf( QRegExp( "^APPEND_SUBDATASET=.*", Qt::CaseInsensitive ) );
442442
if ( indx > -1 )
443443
{
444-
options.replace ( indx, QStringLiteral( "APPEND_SUBDATASET=YES" ) );
444+
options.replace( indx, QStringLiteral( "APPEND_SUBDATASET=YES" ) );
445445
}
446446
else
447447
{

‎src/gui/qgsrasterlayersaveasdialog.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ class GUI_EXPORT QgsRasterLayerSaveAsDialog: public QDialog, private Ui::QgsRast
139139
double noDataCellValue( int row, int column ) const;
140140
void adjustNoDataCellWidth( int row, int column );
141141
bool validate() const;
142+
// Returns true if the output layer already exists in a GeoPackage file.
142143
bool outputLayerExistsInGpkg() const;
143144

144145
void insertAvailableOutputFormats();

0 commit comments

Comments
 (0)
Please sign in to comment.