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
=== modified file 'plugins/unityshell/src/unityshell.cpp'
--- plugins/unityshell/src/unityshell.cpp 2012-10-05 14:18:40 +0000
+++ plugins/unityshell/src/unityshell.cpp 2012-10-09 04:01:23 +0000
@@ -2459,7 +2459,7 @@
2459 }2459 }
2460 }2460 }
24612461
2462 if (WindowManager::Default()->IsScaleActive() && ScaleScreen::get(screen)->getSelectedWindow() == window->id())2462 if (WindowManager::Default().IsScaleActive() && ScaleScreen::get(screen)->getSelectedWindow() == window->id())
2463 {2463 {
2464 nux::Geometry scaled_geo = GetScaledGeometry();2464 nux::Geometry scaled_geo = GetScaledGeometry();
2465 int inside_glow = scale::decoration::RADIUS/4;2465 int inside_glow = scale::decoration::RADIUS/4;