Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix tests
  • Loading branch information
borysiasty committed Sep 12, 2018
1 parent fd0d557 commit 9bfebb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsrasterlayersaveasdialog.cpp
Expand Up @@ -441,7 +441,7 @@ QStringList QgsRasterLayerSaveAsDialog::createOptions() const
indx = options.indexOf( QRegExp( "^APPEND_SUBDATASET=.*", Qt::CaseInsensitive ) );
if ( indx > -1 )
{
options.replace ( indx, QStringLiteral( "APPEND_SUBDATASET=YES" ) );
options.replace( indx, QStringLiteral( "APPEND_SUBDATASET=YES" ) );
}
else
{
Expand Down
1 change: 1 addition & 0 deletions src/gui/qgsrasterlayersaveasdialog.h
Expand Up @@ -139,6 +139,7 @@ class GUI_EXPORT QgsRasterLayerSaveAsDialog: public QDialog, private Ui::QgsRast
double noDataCellValue( int row, int column ) const;
void adjustNoDataCellWidth( int row, int column );
bool validate() const;
// Returns true if the output layer already exists in a GeoPackage file.
bool outputLayerExistsInGpkg() const;

void insertAvailableOutputFormats();
Expand Down

0 comments on commit 9bfebb3

Please sign in to comment.