Skip to content

Commit

Permalink
[qtcontacts-sqlite] Use "?" instead of "!" for unknown display label …
Browse files Browse the repository at this point in the history
…group. Contributes to JB#44742
  • Loading branch information
blammit authored and Chris Adams committed Mar 20, 2019
1 parent 9e3815f commit f4f8f7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/engine/defaultdlggenerator.cpp
Expand Up @@ -110,7 +110,7 @@ QStringList DefaultDlgGenerator::displayLabelGroups() const
QStringLiteral("Y"),
QStringLiteral("Z"),
QStringLiteral("#"),
QStringLiteral("!")
QStringLiteral("?")
};
return groups;
}
Expand All @@ -130,8 +130,8 @@ QString DefaultDlgGenerator::displayLabelGroup(const QString &data) const
}

if (group.isEmpty()) {
// unknown group. put in "other" group '!'
group = QStringLiteral("!");
// unknown group. put in "other" group '?'
group = QStringLiteral("?");
}

return group;
Expand Down

0 comments on commit f4f8f7f

Please sign in to comment.