[contextualprocess] Make conversion explicit

- Qt 5.7 doesn't like QLatin1Char comparison, so switch to
   a full string. Tested on Neptune Linux, #979
main
Adriaan de Groot 7 years ago
parent 0ffb6ed67c
commit 2d29bf4449

@ -66,7 +66,7 @@ struct ContextualProcessBinding
void append( const QString& value, CalamaresUtils::CommandList* commands )
{
checks.append( ValueCheck( value, commands ) );
if ( value == QLatin1Char('*') )
if ( value == QLatin1Literal("*") )
wildcard = commands;
}

Loading…
Cancel
Save