Skip to content

Commit

Permalink
fix #2002
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@11799 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Oct 12, 2009
1 parent cd1a432 commit 3338ac6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/grass/qgsgrassmodule.cpp
Expand Up @@ -1172,9 +1172,9 @@ void QgsGrassModule::run()

// Quote options with special characters so that user
// can copy-paste-run the command
if (( *it ).contains( QRegExp( "[ <>\\$|;&]" ) ) )
if ( it->contains( QRegExp( "[ <>\\$|;&]" ) ) )
{
argumentsHtml.append( "'" + *it + "'" );
argumentsHtml.append( "\"" + *it + "\"" );
}
else
{
Expand Down

0 comments on commit 3338ac6

Please sign in to comment.