summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/ui/view/gridwin_dbgutil.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/view/gridwin_dbgutil.cxx b/sc/source/ui/view/gridwin_dbgutil.cxx
index 517bbe08dd8f..54050a4287ee 100644
--- a/sc/source/ui/view/gridwin_dbgutil.cxx
+++ b/sc/source/ui/view/gridwin_dbgutil.cxx
@@ -96,8 +96,8 @@ void ScGridWindow::dumpGraphicInformation()
for (sal_uInt16 nPage = 0; nPage < nPageCount; ++nPage)
{
SdrPage* pPage = pDrawLayer->GetPage(nPage);
- sal_uInt16 nObjCount = pPage->GetObjCount();
- for (sal_uInt16 nObj = 0; nObj < nObjCount; ++nObj)
+ size_t nObjCount = pPage->GetObjCount();
+ for (size_t nObj = 0; nObj < nObjCount; ++nObj)
{
SdrObject* pObj = pPage->GetObj(nObj);
std::cout << "Graphic Object" << std::endl;