Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Don't use deprecated QProcess::start variant
  • Loading branch information
nyalldawson committed Jun 1, 2021
1 parent ea14553 commit 3491f40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/grass/qgsgrass.cpp
Expand Up @@ -437,7 +437,7 @@ bool QgsGrass::init( void )
int state;

QProcess p;
p.start( pagers.at( i ) );
p.start( pagers.at( i ), QStringList() );
p.waitForStarted();
state = p.state();
p.write( "\004" ); // Ctrl-D
Expand Down

0 comments on commit 3491f40

Please sign in to comment.