We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent c777c8d commit d5f97dbCopy full SHA for d5f97db
src/plugins/grass/qgsgrassmapcalc.cpp
@@ -434,15 +434,13 @@ void QgsGrassMapcalc::mouseReleaseEvent( QMouseEvent* e )
434
QStringList QgsGrassMapcalc::arguments()
435
{
436
QString cmd = "";
437
- //cmd.append("'");
+ // Attention with quotes and spaces!
438
+ //cmd.append("\"");
439
440
cmd.append( mOutputLineEdit->text() );
- cmd.append( "=" );
441
+ cmd.append( " = " );
442
cmd.append( mOutput->expression() );
443
-
444
- //cmd = "\"pok=1\"";
445
- //cmd = mOutputLineEdit->text();
446
447
return QStringList( cmd );
448
}
0 commit comments