mirror of
https://github.com/parchlinux/calamares.git
synced 2025-07-03 04:15:37 -04:00
[contextualprocess] Make conversion explicit
- Qt 5.7 doesn't like QLatin1Char comparison, so switch to a full string. Tested on Neptune Linux, #979
This commit is contained in:
parent
0ffb6ed67c
commit
2d29bf4449
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ struct ContextualProcessBinding
|
||||||
void append( const QString& value, CalamaresUtils::CommandList* commands )
|
void append( const QString& value, CalamaresUtils::CommandList* commands )
|
||||||
{
|
{
|
||||||
checks.append( ValueCheck( value, commands ) );
|
checks.append( ValueCheck( value, commands ) );
|
||||||
if ( value == QLatin1Char('*') )
|
if ( value == QLatin1Literal("*") )
|
||||||
wildcard = commands;
|
wildcard = commands;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue