summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-05-07 09:42:18 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-05-07 08:25:25 +0000
commit710da5b12d52abfd96527b43f5959ae31b8e7407 (patch)
treef0fe8150b57518a07ed9b1f1cb77a7a66b98331b /sw
parenta7a2fa9303c226aef409ac032272908c6c08e4ee (diff)
WaE: C4389: '!=' : signed/unsigned mismatch
Change-Id: I6a2e0992077b185107f8d7190478d95f8d898e9e Reviewed-on: https://gerrit.libreoffice.org/9266 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/ui/fldui/javaedit.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/fldui/javaedit.cxx b/sw/source/ui/fldui/javaedit.cxx
index bbc4f00e9521..68412714a77b 100644
--- a/sw/source/ui/fldui/javaedit.cxx
+++ b/sw/source/ui/fldui/javaedit.cxx
@@ -219,7 +219,7 @@ void SwJavaEditDialog::SetFld()
bool SwJavaEditDialog::IsUpdate() const
{
- return pFld && ( (bIsUrl ? 1 : 0) != pFld->GetFormat() || pFld->GetPar2() != aType || pFld->GetPar1() != aText );
+ return pFld && ( sal_uInt32(bIsUrl ? 1 : 0) != pFld->GetFormat() || pFld->GetPar2() != aType || pFld->GetPar1() != aText );
}
IMPL_LINK_NOARG(SwJavaEditDialog, RadioButtonHdl)