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
=== modified file 'tests/xtest-vlayout-key-navigation.cpp'
--- tests/xtest-vlayout-key-navigation.cpp 2012-02-19 07:04:11 +0000
+++ tests/xtest-vlayout-key-navigation.cpp 2012-09-26 02:57:22 +0000
@@ -114,7 +114,7 @@
114 test.TestReportMsg(key_navigation_test->views_[0]->has_focus_, "Top left tile has key focus");114 test.TestReportMsg(key_navigation_test->views_[0]->has_focus_, "Top left tile has key focus");
115 115
116 // Down key116 // Down key
117 for (int i=0; i<NUM_VIEWS-1; ++i)117 for (unsigned int i=0; i<NUM_VIEWS-1; ++i)
118 {118 {
119 test.SendFakeKeyEvent(XK_Down, 0);119 test.SendFakeKeyEvent(XK_Down, 0);
120 nux::SleepForMilliseconds(500);120 nux::SleepForMilliseconds(500);

Subscribers

People subscribed via source and target branches