Merge lp:~3v1n0/unity/track-lazyload-texture into lp:unity

Proposed by Marco Trevisan (Treviño)
Status: Merged
Approved by: Andrea Azzarone
Approved revision: no longer in the source branch.
Merged at revision: 4117
Proposed branch: lp:~3v1n0/unity/track-lazyload-texture
Merge into: lp:unity
Diff against target: 12 lines (+1/-1)
1 file modified
unity-shared/DashStyle.cpp (+1/-1)
To merge this branch: bzr merge lp:~3v1n0/unity/track-lazyload-texture
Reviewer Review Type Date Requested Status
Andrea Azzarone (community) Approve
PS Jenkins bot (community) continuous-integration Approve
Review via email: mp+294268@code.launchpad.net

Commit message

DashStyle: ensure LazyLoadTexture disconnects from signals on destruction

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Andrea Azzarone (azzar1) wrote :

+1

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'unity-shared/DashStyle.cpp'
2--- unity-shared/DashStyle.cpp 2016-03-31 05:53:05 +0000
3+++ unity-shared/DashStyle.cpp 2016-05-10 16:08:57 +0000
4@@ -95,7 +95,7 @@
5 *height = cairo_image_surface_get_height(surface) / h_scale;
6 }
7
8-class LazyLoadTexture
9+class LazyLoadTexture : public sigc::trackable
10 {
11 public:
12 LazyLoadTexture(std::string const& filename, int size = -1);