summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2013-06-23 20:52:48 +0200
committerEike Rathke <erack@redhat.com>2013-07-02 11:15:24 +0200
commit6378ab7ad5a8d87960e0d2c0810375af21e32d18 (patch)
tree69376856f01576181b705d22ea782704188d09ae /forms
parent87daa3c948eaa928591d95c9528922471fde57c1 (diff)
make "gcc -Werror" happy
Change-Id: I6dd1bf6b4535bb956cb7e85908312d52749a6f2b (cherry picked from commit e2d9138ce03d4f330e0737396b75871cab6ca5d2) Signed-off-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/ListBox.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx
index 95b7ea13449b..feedf628afa1 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -946,7 +946,7 @@ namespace frm
if(*aBoundColumn == -1)
{
// the type of i matters! It will be the type of the ORowSetValue pushed to aValueList!
- for(sal_Int16 i=0; i < aDisplayList.size(); ++i)
+ for(sal_Int16 i=0; static_cast<ValueList::size_type>(i) < aDisplayList.size(); ++i)
{
aValueList.push_back(i);
}