[Libreoffice-commits] core.git: sw/source

Thomas Arnhold thomas at arnhold.org
Wed May 7 01:25:55 PDT 2014


 sw/source/ui/fldui/javaedit.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 710da5b12d52abfd96527b43f5959ae31b8e7407
Author: Thomas Arnhold <thomas at arnhold.org>
Date:   Wed May 7 09:42:18 2014 +0200

    WaE: C4389: '!=' : signed/unsigned mismatch
    
    Change-Id: I6a2e0992077b185107f8d7190478d95f8d898e9e
    Reviewed-on: https://gerrit.libreoffice.org/9266
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
    Tested-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/sw/source/ui/fldui/javaedit.cxx b/sw/source/ui/fldui/javaedit.cxx
index bbc4f00..6841271 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)


More information about the Libreoffice-commits mailing list