diff -ur ooo_SRC680_m233_src.orig/xmloff/source/draw/xexptran.cxx ooo_SRC680_m233_src/xmloff/source/draw/xexptran.cxx --- ooo_SRC680_m233_src.orig/xmloff/source/draw/xexptran.cxx 2007-10-13 11:42:37.000000000 +0200 +++ ooo_SRC680_m233_src/xmloff/source/draw/xexptran.cxx 2007-10-13 11:44:01.000000000 +0200 @@ -451,7 +451,7 @@ OUString aClosingBrace(sal_Unicode(')')); OUString aEmptySpace(sal_Unicode(' ')); - for(sal_uInt32 a(0L); a < maList.size(); a++) + for(sal_uInt32 a(0UL); a < maList.size(); a++) { ImpSdXMLExpTransObj2DBase* pObj = maList[a]; switch(pObj->mnType) @@ -533,7 +533,7 @@ } // if not the last entry, add one space to next tag - if(a + 1L != maList.size()) + if(a + 1UL != maList.size()) { aNewString += aEmptySpace; } @@ -924,7 +924,7 @@ OUString aClosingBrace(sal_Unicode(')')); OUString aEmptySpace(sal_Unicode(' ')); - for(sal_uInt32 a(0L); a < maList.size(); a++) + for(sal_uInt32 a(0UL); a < maList.size(); a++) { ImpSdXMLExpTransObj3DBase* pObj = maList[a]; switch(pObj->mnType) @@ -1034,7 +1034,7 @@ } // if not the last entry, add one space to next tag - if(a + 1L != maList.size()) + if(a + 1UL != maList.size()) { aNewString += aEmptySpace; }