diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2007-11-26 15:54:49 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2007-11-26 15:54:49 +0000 |
commit | 9afd47273fbd7b6acd2094fd9e3d388b5ba62c41 (patch) | |
tree | dbc840644f83aa2bb54fe6ddb7bf07f4a7a68950 /xmloff/source/draw | |
parent | d8aa91cad6ab33c1911dbc46a86f5c1bf0c3eaf2 (diff) |
INTEGRATION: CWS impress134 (1.26.52); FILE MERGED
2007/11/08 09:52:49 cl 1.26.52.1: #i82987# applied build patch for 64bit Linux
Diffstat (limited to 'xmloff/source/draw')
-rw-r--r-- | xmloff/source/draw/xexptran.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xmloff/source/draw/xexptran.cxx b/xmloff/source/draw/xexptran.cxx index 8614bc8630ac..476af4e4c1ed 100644 --- a/xmloff/source/draw/xexptran.cxx +++ b/xmloff/source/draw/xexptran.cxx @@ -4,9 +4,9 @@ * * $RCSfile: xexptran.cxx,v $ * - * $Revision: 1.26 $ + * $Revision: 1.27 $ * - * last change: $Author: hr $ $Date: 2007-08-02 17:23:20 $ + * last change: $Author: ihi $ $Date: 2007-11-26 16:54:49 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -451,7 +451,7 @@ const OUString& SdXMLImExTransform2D::GetExportString(const SvXMLUnitConverter& 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 @@ const OUString& SdXMLImExTransform2D::GetExportString(const SvXMLUnitConverter& } // 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 @@ const OUString& SdXMLImExTransform3D::GetExportString(const SvXMLUnitConverter& 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 @@ const OUString& SdXMLImExTransform3D::GetExportString(const SvXMLUnitConverter& } // if not the last entry, add one space to next tag - if(a + 1L != maList.size()) + if(a + 1UL != maList.size()) { aNewString += aEmptySpace; } |