Kaydet (Commit) 710da5b1 authored tarafından Thomas Arnhold's avatar Thomas Arnhold Kaydeden (comit) Stephan Bergmann

WaE: C4389: '!=' : signed/unsigned mismatch

Change-Id: I6a2e0992077b185107f8d7190478d95f8d898e9e
Reviewed-on: https://gerrit.libreoffice.org/9266Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
Tested-by: 's avatarStephan Bergmann <sbergman@redhat.com>
üst a7a2fa93
...@@ -219,7 +219,7 @@ void SwJavaEditDialog::SetFld() ...@@ -219,7 +219,7 @@ void SwJavaEditDialog::SetFld()
bool SwJavaEditDialog::IsUpdate() const 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) IMPL_LINK_NOARG(SwJavaEditDialog, RadioButtonHdl)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment