summaryrefslogtreecommitdiff
path: root/xml2cmp/source/xcd/cr_html.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-09-25 12:26:08 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-09-25 12:26:08 +0000
commitf73eb381116baf3eeba1f231c7f8c381ef4feb44 (patch)
tree2e93eb979ea68f6677b09f5653cca0517fe2c4df /xml2cmp/source/xcd/cr_html.cxx
parent00d80d7698b4e41a40271fcb880b26b18809ad39 (diff)
INTEGRATION: CWS obo05 (1.8.2); FILE MERGED
2006/06/27 13:15:59 obo 1.8.2.1: #i53611# port for .net 2005
Diffstat (limited to 'xml2cmp/source/xcd/cr_html.cxx')
-rw-r--r--xml2cmp/source/xcd/cr_html.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xml2cmp/source/xcd/cr_html.cxx b/xml2cmp/source/xcd/cr_html.cxx
index 321f8d526bd5..4ebcdccdd397 100644
--- a/xml2cmp/source/xcd/cr_html.cxx
+++ b/xml2cmp/source/xcd/cr_html.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: cr_html.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: hr $ $Date: 2006-06-19 20:04:45 $
+ * last change: $Author: vg $ $Date: 2006-09-25 13:26:08 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -141,9 +141,9 @@ HtmlCreator::Write_SglTextElement( const SglTextElement & i_rElement,
if ( i_rElement.IsReversedName())
{
const char * pEnd = strchr(i_rElement.Data(), ' ');
- nLen = pEnd - i_rElement.Data();
+ nLen = (unsigned)( pEnd - i_rElement.Data() );
}
- aFile.write( i_rElement.Data(), nLen );
+ aFile.write( i_rElement.Data(), (int) nLen );
WriteStr( "\">" );
}