From b1c9ec4bdbd8cbba4b1331cf69ac3c8404e47d82 Mon Sep 17 00:00:00 2001 From: Montel Laurent Date: Mon, 1 Aug 2016 07:04:03 +0200 Subject: [PATCH] Fix method name as David pointed me --- CMakeLists.txt | 2 +- .../plugineditorcheckbeforesendconfigurewidget.cpp | 4 ++-- .../plugineditorcheckbeforesendconfigurewidget.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 76ee26e8..d5fad35e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) include(ECMQtDeclareLoggingCategory) include(ECMAddTests) -set(PIM_VERSION "5.2.94") +set(PIM_VERSION "5.2.95") set(MESSAGELIB_LIB_VERSION ${PIM_VERSION}) set(AKONADIMIME_LIB_VERSION "5.2.90") diff --git a/messagecomposer/src/plugineditorcheckbeforesend/plugineditorcheckbeforesendconfigurewidget.cpp b/messagecomposer/src/plugineditorcheckbeforesend/plugineditorcheckbeforesendconfigurewidget.cpp index f88effe5..85d036a8 100644 --- a/messagecomposer/src/plugineditorcheckbeforesend/plugineditorcheckbeforesendconfigurewidget.cpp +++ b/messagecomposer/src/plugineditorcheckbeforesend/plugineditorcheckbeforesendconfigurewidget.cpp @@ -38,12 +38,12 @@ QString PluginEditorCheckBeforeSendConfigureWidget::helpAnchor() const return QString(); } -void PluginEditorCheckBeforeSendConfigureWidget::setIdentityManagement(KIdentityManagement::IdentityManager *identityManagement) +void PluginEditorCheckBeforeSendConfigureWidget::setIdentityManager(KIdentityManagement::IdentityManager *identityManagement) { mIdentityManagement = identityManagement; } -KIdentityManagement::IdentityManager *PluginEditorCheckBeforeSendConfigureWidget::identityManagement() const +KIdentityManagement::IdentityManager *PluginEditorCheckBeforeSendConfigureWidget::identityManager() const { return mIdentityManagement; } diff --git a/messagecomposer/src/plugineditorcheckbeforesend/plugineditorcheckbeforesendconfigurewidget.h b/messagecomposer/src/plugineditorcheckbeforesend/plugineditorcheckbeforesendconfigurewidget.h index 4633085e..045857a4 100644 --- a/messagecomposer/src/plugineditorcheckbeforesend/plugineditorcheckbeforesendconfigurewidget.h +++ b/messagecomposer/src/plugineditorcheckbeforesend/plugineditorcheckbeforesendconfigurewidget.h @@ -42,8 +42,8 @@ public: virtual void resetSettings() = 0; virtual QString helpAnchor() const; - void setIdentityManagement(KIdentityManagement::IdentityManager *identityManagement); - KIdentityManagement::IdentityManager *identityManagement() const; + void setIdentityManager(KIdentityManagement::IdentityManager *identityManager); + KIdentityManagement::IdentityManager *identityManager() const; Q_SIGNALS: void configureChanged(); -- GitLab