summaryrefslogtreecommitdiff
path: root/framework/source/xml/imagesdocumenthandler.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-01-04 15:23:43 +0000
committerOliver Bolte <obo@openoffice.org>2008-01-04 15:23:43 +0000
commit9a0f5f5a694112028553c503eaa8046d1a3660de (patch)
tree6a0b440f8f36ae6061718926ed235a2ffcea3bb0 /framework/source/xml/imagesdocumenthandler.cxx
parent8396631b0d73a72bf4b33620de3e553428724195 (diff)
INTEGRATION: CWS fwk77 (1.7.172); FILE MERGED
2007/10/30 07:45:11 cd 1.7.172.1: #i83012# Fix warnings for 64bit
Diffstat (limited to 'framework/source/xml/imagesdocumenthandler.cxx')
-rw-r--r--framework/source/xml/imagesdocumenthandler.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/xml/imagesdocumenthandler.cxx b/framework/source/xml/imagesdocumenthandler.cxx
index 56bec2dfcb58..97126638ebb5 100644
--- a/framework/source/xml/imagesdocumenthandler.cxx
+++ b/framework/source/xml/imagesdocumenthandler.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: imagesdocumenthandler.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: obo $ $Date: 2006-10-12 10:44:13 $
+ * last change: $Author: obo $ $Date: 2008-01-04 16:23:43 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -647,7 +647,7 @@ throw( SAXException, RuntimeException )
if ( m_xLocator.is() )
{
- snprintf( buffer, sizeof(buffer), "Line: %ld - ", m_xLocator->getLineNumber() );
+ snprintf( buffer, sizeof(buffer), "Line: %ld - ", static_cast<long>( m_xLocator->getLineNumber() ));
return OUString::createFromAscii( buffer );
}
else