Merge lp:~nick-dedekind/unity-api/signal-namespaces into lp:unity-api

Proposed by Nick Dedekind
Status: Merged
Approved by: Lukáš Tinkl
Approved revision: 261
Merged at revision: 261
Proposed branch: lp:~nick-dedekind/unity-api/signal-namespaces
Merge into: lp:unity-api
Diff against target: 27 lines (+3/-3)
2 files modified
include/unity/shell/application/MirSurfaceItemInterface.h (+1/-1)
include/unity/shell/application/SurfaceManagerInterface.h (+2/-2)
To merge this branch: bzr merge lp:~nick-dedekind/unity-api/signal-namespaces
Reviewer Review Type Date Requested Status
Lukáš Tinkl (community) Approve
Unity8 CI Bot continuous-integration Approve
Review via email: mp+314006@code.launchpad.net

Commit message

Fully qualify pointer type namespaces in signals so that the parameters can be used in qml.

Description of the change

Fully qualify pointer type namespaces in signals so that the parameters can be used in qml.

To post a comment you must log in.
Revision history for this message
Unity8 CI Bot (unity8-ci-bot) wrote :

FAILED: Continuous integration, rev:261
https://unity8-jenkins.ubuntu.com/job/lp-unity-api-ci/127/
Executed test runs:
    FAILURE: https://unity8-jenkins.ubuntu.com/job/build/3656/console
    SUCCESS: https://unity8-jenkins.ubuntu.com/job/build-0-fetch/3684
    SUCCESS: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=amd64,release=xenial+overlay/3529
        deb: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=amd64,release=xenial+overlay/3529/artifact/output/*zip*/output.zip
    SUCCESS: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=amd64,release=zesty/3529
        deb: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=amd64,release=zesty/3529/artifact/output/*zip*/output.zip
    SUCCESS: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=armhf,release=xenial+overlay/3529
        deb: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=armhf,release=xenial+overlay/3529/artifact/output/*zip*/output.zip
    FAILURE: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=armhf,release=zesty/3529/console
    SUCCESS: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=i386,release=xenial+overlay/3529
        deb: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=i386,release=xenial+overlay/3529/artifact/output/*zip*/output.zip
    SUCCESS: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=i386,release=zesty/3529
        deb: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=i386,release=zesty/3529/artifact/output/*zip*/output.zip

Click here to trigger a rebuild:
https://unity8-jenkins.ubuntu.com/job/lp-unity-api-ci/127/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
Unity8 CI Bot (unity8-ci-bot) wrote :

PASSED: Continuous integration, rev:261
https://unity8-jenkins.ubuntu.com/job/lp-unity-api-ci/128/
Executed test runs:
    SUCCESS: https://unity8-jenkins.ubuntu.com/job/build/3663
    SUCCESS: https://unity8-jenkins.ubuntu.com/job/build-0-fetch/3691
    SUCCESS: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=amd64,release=xenial+overlay/3536
        deb: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=amd64,release=xenial+overlay/3536/artifact/output/*zip*/output.zip
    SUCCESS: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=amd64,release=zesty/3536
        deb: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=amd64,release=zesty/3536/artifact/output/*zip*/output.zip
    SUCCESS: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=armhf,release=xenial+overlay/3536
        deb: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=armhf,release=xenial+overlay/3536/artifact/output/*zip*/output.zip
    SUCCESS: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=armhf,release=zesty/3536
        deb: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=armhf,release=zesty/3536/artifact/output/*zip*/output.zip
    SUCCESS: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=i386,release=xenial+overlay/3536
        deb: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=i386,release=xenial+overlay/3536/artifact/output/*zip*/output.zip
    SUCCESS: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=i386,release=zesty/3536
        deb: https://unity8-jenkins.ubuntu.com/job/build-2-binpkg/arch=i386,release=zesty/3536/artifact/output/*zip*/output.zip

Click here to trigger a rebuild:
https://unity8-jenkins.ubuntu.com/job/lp-unity-api-ci/128/rebuild

review: Approve (continuous-integration)
Revision history for this message
Lukáš Tinkl (lukas-kde) wrote :

LGTM, makes sense

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'include/unity/shell/application/MirSurfaceItemInterface.h'
--- include/unity/shell/application/MirSurfaceItemInterface.h 2016-11-03 12:25:43 +0000
+++ include/unity/shell/application/MirSurfaceItemInterface.h 2017-01-03 12:42:02 +0000
@@ -156,7 +156,7 @@
156 void surfaceStateChanged(Mir::State);156 void surfaceStateChanged(Mir::State);
157 void liveChanged(bool live);157 void liveChanged(bool live);
158 void orientationAngleChanged(Mir::OrientationAngle angle);158 void orientationAngleChanged(Mir::OrientationAngle angle);
159 void surfaceChanged(MirSurfaceInterface*);159 void surfaceChanged(unity::shell::application::MirSurfaceInterface* surface);
160 void consumesInputChanged(bool value);160 void consumesInputChanged(bool value);
161 void surfaceWidthChanged(int value);161 void surfaceWidthChanged(int value);
162 void surfaceHeightChanged(int value);162 void surfaceHeightChanged(int value);
163163
=== modified file 'include/unity/shell/application/SurfaceManagerInterface.h'
--- include/unity/shell/application/SurfaceManagerInterface.h 2016-11-14 20:35:23 +0000
+++ include/unity/shell/application/SurfaceManagerInterface.h 2017-01-03 12:42:02 +0000
@@ -37,8 +37,8 @@
37 virtual void activate(MirSurfaceInterface *surface) = 0;37 virtual void activate(MirSurfaceInterface *surface) = 0;
3838
39Q_SIGNALS:39Q_SIGNALS:
40 void surfaceCreated(MirSurfaceInterface *surface);40 void surfaceCreated(unity::shell::application::MirSurfaceInterface *surface);
41 void surfacesRaised(const QVector<MirSurfaceInterface*> &surfaces);41 void surfacesRaised(const QVector<unity::shell::application::MirSurfaceInterface*> &surfaces);
42 void modificationsStarted();42 void modificationsStarted();
43 void modificationsEnded();43 void modificationsEnded();
44};44};

Subscribers

People subscribed via source and target branches

to all changes: