Skip to content

Commit fb86a5f

Browse files
committedFeb 26, 2018
[processing][help] use helpId() when constructing anchor name (follow up 598b8a9)
(cherry picked from commit 725f360)
1 parent 7416b6c commit fb86a5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/gui/processing/qgsprocessingalgorithmdialogbase.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ void QgsProcessingAlgorithmDialogBase::openHelp()
233233
QUrl algHelp = mAlgorithm->helpUrl();
234234
if ( algHelp.isEmpty() )
235235
{
236-
algHelp = QgsHelp::helpUrl( QStringLiteral( "processing_algs/%1/%2.html#%3" ).arg( mAlgorithm->provider()->helpId(), mAlgorithm->groupId(), mAlgorithm->id().replace( ":", "" ) ) );
236+
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() ) ) );
237237
}
238238

239239
if ( !algHelp.isEmpty() )

0 commit comments

Comments
 (0)
Please sign in to comment.