clang-tidy: use braced init list (#7998)

This commit is contained in:
Rosen Penev 2023-01-29 07:05:44 -08:00 committed by GitHub
parent 0f7ef275ab
commit 318157d242
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
34 changed files with 87 additions and 87 deletions

View file

@ -55,9 +55,9 @@ Icons::Icons()
QString Icons::applicationIconName()
{
#ifdef KEEPASSXC_DIST_FLATPAK
return QString("org.keepassxc.KeePassXC");
return "org.keepassxc.KeePassXC";
#else
return QString("keepassxc");
return "keepassxc";
#endif
}