Merge lp:~vanvugt/unity/fix-1064175 into lp:unity

Proposed by Daniel van Vugt
Status: Merged
Approved by: Marco Trevisan (Treviño)
Approved revision: no longer in the source branch.
Merged at revision: 2814
Proposed branch: lp:~vanvugt/unity/fix-1064175
Merge into: lp:unity
Diff against target: 12 lines (+1/-1)
1 file modified
plugins/unityshell/src/unityshell.cpp (+1/-1)
To merge this branch: bzr merge lp:~vanvugt/unity/fix-1064175
Reviewer Review Type Date Requested Status
Łukasz Zemczak Approve
Marco Trevisan (Treviño) Approve
Review via email: mp+128623@code.launchpad.net

Commit message

Fix build failure. You can't use "->" with a reference.
(LP: #1064175)

To post a comment you must log in.
Revision history for this message
Marco Trevisan (Treviño) (3v1n0) :
review: Approve
Revision history for this message
Łukasz Zemczak (sil2100) wrote :

WFM.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'plugins/unityshell/src/unityshell.cpp'
2--- plugins/unityshell/src/unityshell.cpp 2012-10-05 14:18:40 +0000
3+++ plugins/unityshell/src/unityshell.cpp 2012-10-09 04:01:23 +0000
4@@ -2459,7 +2459,7 @@
5 }
6 }
7
8- if (WindowManager::Default()->IsScaleActive() && ScaleScreen::get(screen)->getSelectedWindow() == window->id())
9+ if (WindowManager::Default().IsScaleActive() && ScaleScreen::get(screen)->getSelectedWindow() == window->id())
10 {
11 nux::Geometry scaled_geo = GetScaledGeometry();
12 int inside_glow = scale::decoration::RADIUS/4;