summaryrefslogtreecommitdiffstats
path: root/transex3
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-10-24 12:26:54 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-10-24 12:26:54 +0000
commit27ba5335b71f312d7811f6a6445fb6dd40a6a89f (patch)
treecd7eadaa23ea2db6c80e8b08ae99e8f4ca862e8e /transex3
parentINTEGRATION: CWS pj59 (1.22.2); FILE MERGED (diff)
downloadcore-27ba5335b71f312d7811f6a6445fb6dd40a6a89f.tar.gz
core-27ba5335b71f312d7811f6a6445fb6dd40a6a89f.zip
INTEGRATION: CWS pj59 (1.15.12); FILE MERGED
2006/09/28 16:08:49 pjanik 1.15.12.2: RESYNC: (1.15-1.16); FILE MERGED 2006/09/20 21:15:19 pjanik 1.15.12.1: #i69613#: use unsigned long case to prevent warning.
Diffstat (limited to 'transex3')
-rw-r--r--transex3/source/xmlparse.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/transex3/source/xmlparse.cxx b/transex3/source/xmlparse.cxx
index 299ce5564fd0..4b632a462116 100644
--- a/transex3/source/xmlparse.cxx
+++ b/transex3/source/xmlparse.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: xmlparse.cxx,v $
*
- * $Revision: 1.16 $
+ * $Revision: 1.17 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 08:21:26 $
+ * last change: $Author: hr $ $Date: 2006-10-24 13:26:54 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1424,7 +1424,7 @@ XMLUtil::XMLUtil(){
void XMLUtil::dump(){
/*****************************************************************************/
int cnt=1;
- printf("size=%d\n",lMap.size());
+ printf("size=%lu\n",static_cast<unsigned long>(lMap.size()));
for(HashMap::iterator pos = lMap.begin(); pos != lMap.end() ; ++pos){
fprintf(stdout,"key=%s , value=%d , no=%d\n",pos->first.GetBuffer(),pos->second,cnt++);
}