Skip to content

Commit

Permalink
Fix build on older Qt version
Browse files Browse the repository at this point in the history
  • Loading branch information
manup committed Jan 28, 2022
1 parent f6aafdb commit eccbc77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion de_web_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10419,7 +10419,7 @@ Group *DeRestPluginPrivate::getGroupForName(const QString &name)
*/
Group *DeRestPluginPrivate::getGroupForId(const QString &id)
{
if (id.isEmpty() || !id.front().isDigit())
if (id.isEmpty() || !id.at(0).isDigit())
{
return nullptr;
}
Expand Down

0 comments on commit eccbc77

Please sign in to comment.