Skip to content

Commit 221df8e

Browse files
borysiastynyalldawson
authored andcommittedOct 25, 2018
Follow up 88b8039
1 parent d0813a8 commit 221df8e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/gui/processing/qgsprocessingalgorithmdialogbase.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ void QgsProcessingAlgorithmDialogBase::setAlgorithm( QgsProcessingAlgorithm *alg
123123
{
124124
mAlgorithm = algorithm;
125125
QString title;
126-
if ( ( QgsGui::higFlags() & QgsGui::HigDialogTitleIsTitleCase ) and !( algorithm->flags() & QgsProcessingAlgorithm::FlagDisplayNameIsLiteral ) )
126+
if ( ( QgsGui::higFlags() & QgsGui::HigDialogTitleIsTitleCase ) && !( algorithm->flags() & QgsProcessingAlgorithm::FlagDisplayNameIsLiteral ) )
127127
{
128128
title = QgsStringUtils::capitalize( mAlgorithm->displayName(), QgsStringUtils::TitleCase );
129129
}

‎src/gui/qgsgui.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ QgsGui::HigFlags QgsGui::higFlags()
123123
}
124124
else
125125
{
126-
return NULL;
126+
return nullptr;
127127
}
128128
}
129129

0 commit comments

Comments
 (0)
Please sign in to comment.