[pim/kdepim-addons] kmail/editorconvertertextplugins/markdown/markdownlib: Fix order argument title/msg was inverted
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 3bd99b810e7db69d358bbe875334a70622f71fdd by Laurent Montel.
Committed on 16/08/2026 at 07:36.
Pushed by mlaurent into branch 'master'.
Fix order argument title/msg was inverted
M +1 -1 kmail/editorconvertertextplugins/markdown/markdownlib/markdownpreviewwidget.cpp
https://invent.kde.org/pim/kdepim-addons/-/commit/3bd99b810e7db69d358bbe875334a70622f71fdd
diff --git a/kmail/editorconvertertextplugins/markdown/markdownlib/markdownpreviewwidget.cpp b/kmail/editorconvertertextplugins/markdown/markdownlib/markdownpreviewwidget.cpp
index bc1ef2323..94b7ea052 100644
--- a/kmail/editorconvertertextplugins/markdown/markdownlib/markdownpreviewwidget.cpp
+++ b/kmail/editorconvertertextplugins/markdown/markdownlib/markdownpreviewwidget.cpp
@@ -74,7 +74,7 @@ void MarkdownPreviewWidget::slotLinkHovered(const QString &url)
void MarkdownPreviewWidget::converterFailed(const QString &msg)
{
- KMessageBox::error(this, i18n("Converter Error"), msg);
+ KMessageBox::error(this, msg, i18n("Converter Error"));
}
void MarkdownPreviewWidget::setConverterSettings(bool enableEmbeddedLabel, bool enableExtraDefinitionLists)