summaryrefslogtreecommitdiff
path: root/framework/source/xml/toolboxdocumenthandler.cxx
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-01-04 15:24:40 +0000
committerOliver Bolte <obo@openoffice.org>2008-01-04 15:24:40 +0000
commit930f79049ebbff571eb346734652af5c72e55e24 (patch)
treeebc47b1c11a0d4eb37216b8c9f3bdf41fbf96eef /framework/source/xml/toolboxdocumenthandler.cxx
parent11fd87023a6586f4ad543fad5acb7afb4765254e (diff)
INTEGRATION: CWS fwk77 (1.13.92); FILE MERGED
2007/10/30 07:45:11 cd 1.13.92.1: #i83012# Fix warnings for 64bit
Diffstat (limited to 'framework/source/xml/toolboxdocumenthandler.cxx')
-rw-r--r--framework/source/xml/toolboxdocumenthandler.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/xml/toolboxdocumenthandler.cxx b/framework/source/xml/toolboxdocumenthandler.cxx
index 4f499f4bfc..41d8a08877 100644
--- a/framework/source/xml/toolboxdocumenthandler.cxx
+++ b/framework/source/xml/toolboxdocumenthandler.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: toolboxdocumenthandler.cxx,v $
*
- * $Revision: 1.13 $
+ * $Revision: 1.14 $
*
- * last change: $Author: rt $ $Date: 2007-04-03 13:51:15 $
+ * last change: $Author: obo $ $Date: 2008-01-04 16:24:40 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -668,7 +668,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