diff options
Diffstat (limited to 'framework/actions')
-rw-r--r-- | framework/actions/CMakeLists.txt | 4 | ||||
-rw-r--r-- | framework/actions/actionplugin.cpp | 2 | ||||
-rw-r--r-- | framework/actions/qmldir | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/framework/actions/CMakeLists.txt b/framework/actions/CMakeLists.txt index 1151878c..a09445b0 100644 --- a/framework/actions/CMakeLists.txt +++ b/framework/actions/CMakeLists.txt | |||
@@ -10,5 +10,5 @@ add_library(actionplugin SHARED ${SRCS}) | |||
10 | 10 | ||
11 | qt5_use_modules(actionplugin Core Quick Qml) | 11 | qt5_use_modules(actionplugin Core Quick Qml) |
12 | 12 | ||
13 | install(TARGETS actionplugin DESTINATION ${QML_INSTALL_DIR}/org/kde/kube/actions) | 13 | install(TARGETS actionplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/actions) |
14 | install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kde/kube/actions) | 14 | install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kube/framework/actions) |
diff --git a/framework/actions/actionplugin.cpp b/framework/actions/actionplugin.cpp index 710ba08a..87bc4d7b 100644 --- a/framework/actions/actionplugin.cpp +++ b/framework/actions/actionplugin.cpp | |||
@@ -8,7 +8,7 @@ | |||
8 | 8 | ||
9 | void KubePlugin::registerTypes (const char *uri) | 9 | void KubePlugin::registerTypes (const char *uri) |
10 | { | 10 | { |
11 | Q_ASSERT(uri == QLatin1String("org.kde.kube.actions")); | 11 | Q_ASSERT(uri == QLatin1String("org.kube.framework.actions")); |
12 | qmlRegisterType<Kube::Context>(uri, 1, 0, "Context"); | 12 | qmlRegisterType<Kube::Context>(uri, 1, 0, "Context"); |
13 | qmlRegisterType<Kube::Action>(uri, 1, 0, "Action"); | 13 | qmlRegisterType<Kube::Action>(uri, 1, 0, "Action"); |
14 | qmlRegisterType<Kube::ActionHandler>(uri, 1, 0, "ActionHandler"); | 14 | qmlRegisterType<Kube::ActionHandler>(uri, 1, 0, "ActionHandler"); |
diff --git a/framework/actions/qmldir b/framework/actions/qmldir index de2e4b46..f6dccbda 100644 --- a/framework/actions/qmldir +++ b/framework/actions/qmldir | |||
@@ -1,3 +1,3 @@ | |||
1 | module org.kde.kube.actions | 1 | module org.kube.framework.actions |
2 | 2 | ||
3 | plugin actionplugin | 3 | plugin actionplugin |