Skip to content

Commit

Permalink
remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Jan 10, 2017
1 parent 8ff7a38 commit 37df729
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/gui/qgshelp.cpp
Expand Up @@ -51,15 +51,13 @@ QUrl QgsHelp::helpUrl( const QString& key )

Q_FOREACH ( const QString& path, paths )
{
qDebug() << "PATH " << path;
fullPath = path;
Q_FOREACH ( const QString& var, scope->variableNames() )
{
fullPath.replace( QStringLiteral( "$%1" ).arg( var ), scope->variable( var ).toString() );
}

helpPath = QStringLiteral( "%1/%2" ).arg( fullPath ).arg( key );
qDebug() << "HELP " << helpPath;

if ( helpPath.startsWith( QStringLiteral( "http" ) ) )
{
Expand Down

0 comments on commit 37df729

Please sign in to comment.