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

New commits:
commit 710da5b12d52abfd96527b43f5959ae31b8e7407
Author: Thomas Arnhold <tho...@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 <sberg...@redhat.com>
    Tested-by: Stephan Bergmann <sberg...@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)
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to