Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing][help] use helpId() when constructing anchor name (follow…
… up 598b8a9)

(cherry picked from commit 725f360)
  • Loading branch information
alexbruy committed Feb 26, 2018
1 parent 7416b6c commit fb86a5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/processing/qgsprocessingalgorithmdialogbase.cpp
Expand Up @@ -233,7 +233,7 @@ void QgsProcessingAlgorithmDialogBase::openHelp()
QUrl algHelp = mAlgorithm->helpUrl();
if ( algHelp.isEmpty() )
{
algHelp = QgsHelp::helpUrl( QStringLiteral( "processing_algs/%1/%2.html#%3" ).arg( mAlgorithm->provider()->helpId(), mAlgorithm->groupId(), mAlgorithm->id().replace( ":", "" ) ) );
algHelp = QgsHelp::helpUrl( QStringLiteral( "processing_algs/%1/%2.html#%3" ).arg( mAlgorithm->provider()->helpId(), mAlgorithm->groupId(), QStringLiteral( "%1%2" ).arg( mAlgorithm->provider()->helpId() ).arg( mAlgorithm->name() ) ) );
}

if ( !algHelp.isEmpty() )
Expand Down

0 comments on commit fb86a5f

Please sign in to comment.