[Tests] Make tests build again (ctor of HighlightPhrase changed) (#2273)
This commit is contained in:
@@ -9,8 +9,15 @@ namespace {
|
|||||||
HighlightPhrase buildHighlightPhrase(const QString &phrase, bool isRegex,
|
HighlightPhrase buildHighlightPhrase(const QString &phrase, bool isRegex,
|
||||||
bool isCaseSensitive)
|
bool isCaseSensitive)
|
||||||
{
|
{
|
||||||
return HighlightPhrase(phrase, false, false, isRegex, isCaseSensitive, "",
|
return HighlightPhrase(phrase, // pattern
|
||||||
QColor());
|
false, // showInMentions
|
||||||
|
false, // hasAlert
|
||||||
|
false, // hasSound
|
||||||
|
isRegex, // isRegex
|
||||||
|
isCaseSensitive, // isCaseSensitive
|
||||||
|
"", // soundURL
|
||||||
|
QColor() // color
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|||||||
Reference in New Issue
Block a user