[pim/kdepim-addons] kmail/editorplugins/insertemail: Add windowTitle
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit e0d9e0f6ccd31e974b25e7654199f308d5de6c31 by Laurent Montel.
Committed on 16/08/2026 at 13:49.
Pushed by mlaurent into branch 'master'.
Add windowTitle
M +2 -0 kmail/editorplugins/insertemail/selectmaildialog.cpp
https://invent.kde.org/pim/kdepim-addons/-/commit/e0d9e0f6ccd31e974b25e7654199f308d5de6c31
diff --git a/kmail/editorplugins/insertemail/selectmaildialog.cpp b/kmail/editorplugins/insertemail/selectmaildialog.cpp
index be91c9a97..bf7e34c94 100644
--- a/kmail/editorplugins/insertemail/selectmaildialog.cpp
+++ b/kmail/editorplugins/insertemail/selectmaildialog.cpp
@@ -9,6 +9,7 @@ using namespace Qt::Literals::StringLiterals;
#include "selectmailwidget.h"
#include <KConfigGroup>
+#include <KLocalizedString>
#include <KSharedConfig>
#include <KWindowConfig>
#include <QDialogButtonBox>
@@ -24,6 +25,7 @@ SelectMailDialog::SelectMailDialog(QWidget *parent)
: QDialog(parent)
, mSelectMailWidget(new SelectMailWidget(this))
{
+ setWindowTitle(i18nc("@title:window", "Select Email Address"));
auto mainLayout = new QVBoxLayout(this);
mSelectMailWidget->setObjectName(QLatin1StringView("selectmailwidget"));