Nux

Merge lp:~michihenning/nux/1056552 into lp:nux

Proposed by Michi Henning
Status: Merged
Approved by: Michi Henning
Approved revision: 667
Merged at revision: 667
Proposed branch: lp:~michihenning/nux/1056552
Merge into: lp:nux
Diff against target: 12 lines (+1/-1)
1 file modified
tests/xtest-vlayout-key-navigation.cpp (+1/-1)
To merge this branch: bzr merge lp:~michihenning/nux/1056552
Reviewer Review Type Date Requested Status
Tim Penhey (community) Approve
Review via email: mp+126368@code.launchpad.net

Commit message

Trivial change in type of loop control variable to avoid compiler warning.

Description of the change

Trivial change in type of loop control variable to avoid compiler warning.

To post a comment you must log in.
Revision history for this message
Tim Penhey (thumper) :
review: Approve
Revision history for this message
Unity Merger (unity-merger) wrote :

No commit message specified.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'tests/xtest-vlayout-key-navigation.cpp'
2--- tests/xtest-vlayout-key-navigation.cpp 2012-02-19 07:04:11 +0000
3+++ tests/xtest-vlayout-key-navigation.cpp 2012-09-26 02:57:22 +0000
4@@ -114,7 +114,7 @@
5 test.TestReportMsg(key_navigation_test->views_[0]->has_focus_, "Top left tile has key focus");
6
7 // Down key
8- for (int i=0; i<NUM_VIEWS-1; ++i)
9+ for (unsigned int i=0; i<NUM_VIEWS-1; ++i)
10 {
11 test.SendFakeKeyEvent(XK_Down, 0);
12 nux::SleepForMilliseconds(500);

Subscribers

People subscribed via source and target branches