From c38babf67c7bc8fab2d72ef3d88ebdcd7b70788a Mon Sep 17 00:00:00 2001 From: Laurent Montel Date: Wed, 28 Feb 2018 14:01:02 +0100 Subject: [PATCH] Use new api --- CMakeLists.txt | 2 +- src/editor/kmcomposereditorng.cpp | 7 +++++++ src/editor/kmcomposereditorng.h | 1 + 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d72c2dbd0..15f6ccc9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -67,7 +67,7 @@ find_package(Qt5 ${QT_REQUIRED_VERSION} CONFIG REQUIRED DBus Network Test Widget set(LIBGRAVATAR_VERSION_LIB "5.7.40") set(MAILCOMMON_LIB_VERSION_LIB "5.7.41") set(KDEPIM_APPS_LIB_VERSION_LIB "5.7.40") -set(MESSAGELIB_LIB_VERSION_LIB "5.7.49") +set(MESSAGELIB_LIB_VERSION_LIB "5.7.81") set(LIBKLEO_LIB_VERSION_LIB "5.7.40") set(PIMCOMMON_LIB_VERSION_LIB "5.7.42") set(LIBKDEPIM_LIB_VERSION_LIB "5.7.40") diff --git a/src/editor/kmcomposereditorng.cpp b/src/editor/kmcomposereditorng.cpp index 1632221f5..90e28db57 100644 --- a/src/editor/kmcomposereditorng.cpp +++ b/src/editor/kmcomposereditorng.cpp @@ -149,3 +149,10 @@ void KMComposerEditorNg::showSpellConfigDialog(const QString &configFileName) } delete dialog; } + + +bool KMComposerEditorNg::convertPlainText(MessageComposer::TextPart *textPart) +{ + //TODO implement it + return false; +} diff --git a/src/editor/kmcomposereditorng.h b/src/editor/kmcomposereditorng.h index 215b05b3b..312d240dc 100644 --- a/src/editor/kmcomposereditorng.h +++ b/src/editor/kmcomposereditorng.h @@ -36,6 +36,7 @@ public: void showSpellConfigDialog(const QString &configFileName); + bool convertPlainText(MessageComposer::TextPart *textPart) override; Q_SIGNALS: void insertSnippet();