mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-05 05:27:39 +03:00
Add braces around single line statements
* Ran clang-tidy with "readability-braces-around-statements" to find missing braces around statements.
This commit is contained in:
parent
c427000184
commit
c663b5d5fc
12 changed files with 98 additions and 54 deletions
|
@ -779,8 +779,9 @@ Entry* Entry::clone(CloneFlags flags) const
|
|||
entry->m_data.timeInfo.setLocationChanged(now);
|
||||
}
|
||||
|
||||
if (flags & CloneRenameTitle)
|
||||
if (flags & CloneRenameTitle) {
|
||||
entry->setTitle(tr("%1 - Clone").arg(entry->title()));
|
||||
}
|
||||
|
||||
entry->setUpdateTimeinfo(true);
|
||||
|
||||
|
@ -1075,8 +1076,9 @@ QString Entry::resolvePlaceholder(const QString& placeholder) const
|
|||
|
||||
QString Entry::resolveUrlPlaceholder(const QString& str, Entry::PlaceholderType placeholderType) const
|
||||
{
|
||||
if (str.isEmpty())
|
||||
if (str.isEmpty()) {
|
||||
return QString();
|
||||
}
|
||||
|
||||
const QUrl qurl(str);
|
||||
switch (placeholderType) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue