Skip to content

Commit

Permalink
Follow up 88b8039
Browse files Browse the repository at this point in the history
  • Loading branch information
borysiasty authored and nyalldawson committed Oct 25, 2018
1 parent d0813a8 commit 221df8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/gui/processing/qgsprocessingalgorithmdialogbase.cpp
Expand Up @@ -123,7 +123,7 @@ void QgsProcessingAlgorithmDialogBase::setAlgorithm( QgsProcessingAlgorithm *alg
{
mAlgorithm = algorithm;
QString title;
if ( ( QgsGui::higFlags() & QgsGui::HigDialogTitleIsTitleCase ) and !( algorithm->flags() & QgsProcessingAlgorithm::FlagDisplayNameIsLiteral ) )
if ( ( QgsGui::higFlags() & QgsGui::HigDialogTitleIsTitleCase ) && !( algorithm->flags() & QgsProcessingAlgorithm::FlagDisplayNameIsLiteral ) )
{
title = QgsStringUtils::capitalize( mAlgorithm->displayName(), QgsStringUtils::TitleCase );
}
Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsgui.cpp
Expand Up @@ -123,7 +123,7 @@ QgsGui::HigFlags QgsGui::higFlags()
}
else
{
return NULL;
return nullptr;
}
}

Expand Down

0 comments on commit 221df8e

Please sign in to comment.