diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-03-01 22:26:52 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-03-01 22:26:52 +0100 |
commit | b176a7c0279670a859c85c88d75ac150e0dfae2f (patch) | |
tree | 988c499ae487f89ce2837bbd570ed3f1bc2be826 /framework/actions | |
parent | 0a8f96bceb3a6ef9d7555e849668916e2b53b4b0 (diff) | |
download | kube-b176a7c0279670a859c85c88d75ac150e0dfae2f.tar.gz kube-b176a7c0279670a859c85c88d75ac150e0dfae2f.zip |
Adapted to KAsync changes
Diffstat (limited to 'framework/actions')
-rw-r--r-- | framework/actions/CMakeLists.txt | 2 | ||||
-rw-r--r-- | framework/actions/actionhandler.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/actions/CMakeLists.txt b/framework/actions/CMakeLists.txt index 9fc43b9b..2b1bb230 100644 --- a/framework/actions/CMakeLists.txt +++ b/framework/actions/CMakeLists.txt | |||
@@ -9,7 +9,7 @@ set(SRCS | |||
9 | 9 | ||
10 | add_library(actionplugin SHARED ${SRCS}) | 10 | add_library(actionplugin SHARED ${SRCS}) |
11 | 11 | ||
12 | target_link_libraries(actionplugin KF5::Async sink) | 12 | target_link_libraries(actionplugin KAsync sink) |
13 | qt5_use_modules(actionplugin Core Quick Qml) | 13 | qt5_use_modules(actionplugin Core Quick Qml) |
14 | 14 | ||
15 | install(TARGETS actionplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/actions) | 15 | install(TARGETS actionplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/actions) |
diff --git a/framework/actions/actionhandler.h b/framework/actions/actionhandler.h index c0e1b318..fbaedad1 100644 --- a/framework/actions/actionhandler.h +++ b/framework/actions/actionhandler.h | |||
@@ -21,7 +21,7 @@ | |||
21 | #include <QObject> | 21 | #include <QObject> |
22 | #include <QMultiMap> | 22 | #include <QMultiMap> |
23 | #include <functional> | 23 | #include <functional> |
24 | #include <Async/Async> | 24 | #include <KAsync/Async> |
25 | 25 | ||
26 | #include "actionresult.h" | 26 | #include "actionresult.h" |
27 | #include "context.h" | 27 | #include "context.h" |