Skip to content

Commit d5f97db

Browse files
author
rblazek
committedFeb 10, 2010
printed command ready for copy-paste
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@12916 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed
 

‎src/plugins/grass/qgsgrassmapcalc.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -434,15 +434,13 @@ void QgsGrassMapcalc::mouseReleaseEvent( QMouseEvent* e )
434434
QStringList QgsGrassMapcalc::arguments()
435435
{
436436
QString cmd = "";
437-
//cmd.append("'");
437+
// Attention with quotes and spaces!
438+
//cmd.append("\"");
438439

439440
cmd.append( mOutputLineEdit->text() );
440-
cmd.append( "=" );
441+
cmd.append( " = " );
441442
cmd.append( mOutput->expression() );
442-
//cmd.append("'");
443-
444-
//cmd = "\"pok=1\"";
445-
//cmd = mOutputLineEdit->text();
443+
//cmd.append("\"");
446444

447445
return QStringList( cmd );
448446
}

0 commit comments

Comments
 (0)
Please sign in to comment.