diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-07-23 16:28:22 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-07-23 16:28:22 +0200 |
commit | 6a90d4ec8afd1e58c9b69f4de1364d5b5624300b (patch) | |
tree | e91a88ebd7c10847254efd8294acaaae03f9e80b /cui | |
parent | 20ac67f06bc1a21a52e0843de3139d3d6133e4de (diff) |
-Werror=sign-compare
Change-Id: I6be5df685575c6909d4adfcee0ccc4fb0bd4b600
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/optcolor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/options/optcolor.cxx b/cui/source/options/optcolor.cxx index 7bbc4374e9bf..5c90b6540e75 100644 --- a/cui/source/options/optcolor.cxx +++ b/cui/source/options/optcolor.cxx @@ -1033,7 +1033,7 @@ unsigned ColorConfigWindow_Impl::GetPosBehindLastChapter () const long ColorConfigWindow_Impl::GetDeltaAbove (Group eGroup) const { long nDelta = 0; - for (unsigned i = 0; i != eGroup; ++i) + for (int i = 0; i != eGroup; ++i) if (!IsGroupVisible(static_cast<Group>(i))) nDelta += vChapters[i]->GetHeight(); return nDelta; |