summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/CMakeLists.txt2
-rw-r--r--framework/mail/CMakeLists.txt2
-rw-r--r--framework/mail/actions/sinkactions.cpp2
-rw-r--r--framework/mail/folderlistmodel.cpp4
-rw-r--r--framework/mail/maillistcontroller.cpp2
-rw-r--r--framework/mail/maillistmodel.h2
-rw-r--r--framework/settings/CMakeLists.txt4
-rw-r--r--framework/settings/resourcelistmodel.cpp2
8 files changed, 10 insertions, 10 deletions
diff --git a/framework/CMakeLists.txt b/framework/CMakeLists.txt
index 8b0a7ca1..0987f018 100644
--- a/framework/CMakeLists.txt
+++ b/framework/CMakeLists.txt
@@ -18,7 +18,7 @@ find_package(Qt5 COMPONENTS REQUIRED Core Qml)
18 18
19find_package(KF5Otp "5.1.42" CONFIG REQUIRED) 19find_package(KF5Otp "5.1.42" CONFIG REQUIRED)
20find_package(KF5Mime "4.87.0" CONFIG REQUIRED) 20find_package(KF5Mime "4.87.0" CONFIG REQUIRED)
21find_package(SinkCommon CONFIG REQUIRED) 21find_package(Sink CONFIG REQUIRED)
22find_package(KF5Async) 22find_package(KF5Async)
23find_package(KF5Libkleo) 23find_package(KF5Libkleo)
24 24
diff --git a/framework/mail/CMakeLists.txt b/framework/mail/CMakeLists.txt
index 6616e492..f83a3a9e 100644
--- a/framework/mail/CMakeLists.txt
+++ b/framework/mail/CMakeLists.txt
@@ -17,7 +17,7 @@ add_library(mailplugin SHARED ${mailplugin_SRCS})
17 17
18qt5_use_modules(mailplugin Core Quick Qml) 18qt5_use_modules(mailplugin Core Quick Qml)
19 19
20target_link_libraries(mailplugin actionplugin sinkcommon KF5::Otp) 20target_link_libraries(mailplugin actionplugin sink KF5::Otp)
21 21
22install(TARGETS mailplugin DESTINATION ${QML_INSTALL_DIR}/org/kde/kube/mail) 22install(TARGETS mailplugin DESTINATION ${QML_INSTALL_DIR}/org/kde/kube/mail)
23install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kde/kube/mail) 23install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kde/kube/mail)
diff --git a/framework/mail/actions/sinkactions.cpp b/framework/mail/actions/sinkactions.cpp
index 63b837aa..cffa5104 100644
--- a/framework/mail/actions/sinkactions.cpp
+++ b/framework/mail/actions/sinkactions.cpp
@@ -20,7 +20,7 @@
20 20
21#include <actions/context.h> 21#include <actions/context.h>
22 22
23#include <sinkcommon/clientapi.h> 23#include <sink/clientapi.h>
24 24
25using namespace Kube; 25using namespace Kube;
26 26
diff --git a/framework/mail/folderlistmodel.cpp b/framework/mail/folderlistmodel.cpp
index 645ecc30..431354d7 100644
--- a/framework/mail/folderlistmodel.cpp
+++ b/framework/mail/folderlistmodel.cpp
@@ -19,8 +19,8 @@
19*/ 19*/
20 20
21#include "folderlistmodel.h" 21#include "folderlistmodel.h"
22#include <sinkcommon/clientapi.h> 22#include <sink/clientapi.h>
23#include <sinkcommon/applicationdomaintype.h> 23#include <sink/applicationdomaintype.h>
24 24
25FolderListModel::FolderListModel(QObject *parent) : QIdentityProxyModel() 25FolderListModel::FolderListModel(QObject *parent) : QIdentityProxyModel()
26{ 26{
diff --git a/framework/mail/maillistcontroller.cpp b/framework/mail/maillistcontroller.cpp
index b342b1ec..66e51012 100644
--- a/framework/mail/maillistcontroller.cpp
+++ b/framework/mail/maillistcontroller.cpp
@@ -22,7 +22,7 @@
22 22
23#include <QStringList> 23#include <QStringList>
24 24
25#include <sinkcommon/clientapi.h> 25#include <sink/clientapi.h>
26 26
27#include "maillistmodel.h" 27#include "maillistmodel.h"
28 28
diff --git a/framework/mail/maillistmodel.h b/framework/mail/maillistmodel.h
index f15c3e77..8b35966f 100644
--- a/framework/mail/maillistmodel.h
+++ b/framework/mail/maillistmodel.h
@@ -20,7 +20,7 @@
20 20
21#pragma once 21#pragma once
22 22
23#include <sinkcommon/clientapi.h> 23#include <sink/clientapi.h>
24 24
25#include <QSortFilterProxyModel> 25#include <QSortFilterProxyModel>
26#include <QSharedPointer> 26#include <QSharedPointer>
diff --git a/framework/settings/CMakeLists.txt b/framework/settings/CMakeLists.txt
index 017820b6..77268ab9 100644
--- a/framework/settings/CMakeLists.txt
+++ b/framework/settings/CMakeLists.txt
@@ -9,7 +9,7 @@ add_library(settingsplugin SHARED ${settingsplugin_SRCS})
9 9
10qt5_use_modules(settingsplugin Core Quick Qml) 10qt5_use_modules(settingsplugin Core Quick Qml)
11 11
12target_link_libraries(settingsplugin KF5::sinkcommon) 12target_link_libraries(settingsplugin sink)
13 13
14install(TARGETS settingsplugin DESTINATION ${QML_INSTALL_DIR}/org/kde/sink/settings) 14install(TARGETS settingsplugin DESTINATION ${QML_INSTALL_DIR}/org/kde/sink/settings)
15install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kde/sink/settings) \ No newline at end of file 15install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kde/sink/settings)
diff --git a/framework/settings/resourcelistmodel.cpp b/framework/settings/resourcelistmodel.cpp
index ae1ffc15..7d97f342 100644
--- a/framework/settings/resourcelistmodel.cpp
+++ b/framework/settings/resourcelistmodel.cpp
@@ -1,6 +1,6 @@
1#include "resourcelistmodel.h" 1#include "resourcelistmodel.h"
2 2
3#include <sinkcommon/clientapi.h> 3#include <sink/clientapi.h>
4 4
5ResourceListModel::ResourceListModel(QObject *parent) : QIdentityProxyModel() 5ResourceListModel::ResourceListModel(QObject *parent) : QIdentityProxyModel()
6{ 6{