summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdotext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/svdraw/svdotext.cxx')
-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) {