summaryrefslogtreecommitdiff
path: root/reportdesign
diff options
context:
space:
mode:
Diffstat (limited to 'reportdesign')
-rw-r--r--reportdesign/source/ui/inspection/GeometryHandler.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/reportdesign/source/ui/inspection/GeometryHandler.cxx b/reportdesign/source/ui/inspection/GeometryHandler.cxx
index 589e9dc59370..214b6a58eb84 100644
--- a/reportdesign/source/ui/inspection/GeometryHandler.cxx
+++ b/reportdesign/source/ui/inspection/GeometryHandler.cxx
@@ -1252,7 +1252,7 @@ uno::Any SAL_CALL GeometryHandler::convertToControlValue(const OUString & Proper
aPropertyValue >>= nParagraphVertAlign;
ModuleRes aRes(RID_STR_VERTICAL_ALIGN_CONST);
ResStringArray aResList(aRes);
- if (nParagraphVertAlign < aResList.Count())
+ if (sal_uInt32(nParagraphVertAlign) < aResList.Count())
aControlValue <<= aResList.GetString(nParagraphVertAlign);
}
break;