summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-09-20 16:42:53 +0300
committerTor Lillqvist <tml@collabora.com>2015-09-20 16:42:53 +0300
commitaac58c62758e0915b3a590700abecffb4d2c25de (patch)
tree3c51f68d8db10666c635e3e30561da483170b298 /svx/source
parentf66ecf00ed232dd04d5d9b9afd833aa2be981141 (diff)
WaE: loop index type 'unsigned int' is narrower than length type 'size_t'
Change-Id: I2e0999468686e8c5521b7342903df5a68f8648d0
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/svdraw/svdotext.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index 9705624e664f..aa06f1c77a68 100644
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -1993,7 +1993,7 @@ SdrObject *ImpGetObjByName(SdrObjList *pObjList, OUString const& aObjName)
{
// scan the whole list
size_t nObjCount = pObjList->GetObjCount();
- for (unsigned i = 0; i < nObjCount; i++) {
+ for (size_t i = 0; i < nObjCount; i++) {
SdrObject *pCurObj = pObjList->GetObj(i);
if (pCurObj->GetName() == aObjName) {