summaryrefslogtreecommitdiff
path: root/reportdesign
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-10-12 17:20:58 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-10-12 17:20:58 +0200
commitbac147271317c883bf36dbe41d09036f627e005b (patch)
treeb2c48d618dab0dd25bdec7a15ea5cedd63b25e73 /reportdesign
parentf9a0f120a0939a71f6bcff32e6e9d2502f240093 (diff)
warning C4018: '<' : signed/unsigned mismatch
Change-Id: Ie326f95e165ffd0988bc5aff76370b8e86d158d5
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;