mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
clang-tidy: use braced init list (#7998)
This commit is contained in:
parent
0f7ef275ab
commit
318157d242
34 changed files with 87 additions and 87 deletions
|
@ -244,7 +244,7 @@ QDateTime TestKeePass1Reader::genDT(int year, int month, int day, int hour, int
|
|||
{
|
||||
QDate date(year, month, day);
|
||||
QTime time(hour, min, 0);
|
||||
return QDateTime(date, time, Qt::UTC);
|
||||
return {date, time, Qt::UTC};
|
||||
}
|
||||
|
||||
void TestKeePass1Reader::reopenDatabase(QSharedPointer<Database> db,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue