diff options
author | Saturneric <[email protected]> | 2021-07-06 03:01:22 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-07-06 03:01:22 +0000 |
commit | ad507f2373e6fada6b92e4f4a6d1374bca011c3d (patch) | |
tree | a58a794b410fb4ccdd52908ed0f62a5253ad9ba1 /src/ui/QuitDialog.cpp | |
parent | Merge branch 'main' of https://github.com/saturneric/GpgFrontend (diff) | |
parent | Fix issues. (diff) | |
download | GpgFrontend-ad507f2373e6fada6b92e4f4a6d1374bca011c3d.tar.gz GpgFrontend-ad507f2373e6fada6b92e4f4a6d1374bca011c3d.zip |
Merge branch 'develop' into main
Diffstat (limited to 'src/ui/QuitDialog.cpp')
-rwxr-xr-x | src/ui/QuitDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/QuitDialog.cpp b/src/ui/QuitDialog.cpp index 5ebedc20..783a8a61 100755 --- a/src/ui/QuitDialog.cpp +++ b/src/ui/QuitDialog.cpp @@ -74,7 +74,7 @@ QuitDialog::QuitDialog(QWidget *parent, const QHash<int, QString>& unsavedDocs) auto *warn_icon = new QLabel(); warn_icon->setPixmap(pixmap); auto *warn_label = new QLabel( - tr("<h3>%1 files contain unsaved information.<br/>Save the changes before closing?</h3>").arg(row)); + tr("%1 files contain unsaved information.<br/>Save the changes before closing?").arg(row)); auto *warnBoxLayout = new QHBoxLayout(); warnBoxLayout->addWidget(warn_icon); warnBoxLayout->addWidget(warn_label); |