mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-20 18:56:07 -05:00
Fix weird base strings and reduce concatenation
This commit is contained in:
parent
e718e9f5e5
commit
3def6a3bc4
13 changed files with 26 additions and 25 deletions
|
|
@ -53,9 +53,9 @@ AboutDialog::AboutDialog(QWidget* parent)
|
|||
}
|
||||
|
||||
QString debugInfo = "KeePassXC - ";
|
||||
debugInfo.append(tr("Version %1\n").arg(KEEPASSX_VERSION));
|
||||
debugInfo.append(tr("Version %1").arg(KEEPASSX_VERSION).append("\n"));
|
||||
#ifndef KEEPASSXC_BUILD_TYPE_RELEASE
|
||||
debugInfo.append(tr("Build Type: %1\n").arg(KEEPASSXC_BUILD_TYPE));
|
||||
debugInfo.append(tr("Build Type: %1").arg(KEEPASSXC_BUILD_TYPE).append("\n"));
|
||||
#endif
|
||||
if (!commitHash.isEmpty()) {
|
||||
debugInfo.append(tr("Revision: %1").arg(commitHash.left(7)).append("\n"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue