summaryrefslogtreecommitdiff
path: root/framework/source
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2008-01-04 15:23:56 +0000
committerOliver Bolte <obo@openoffice.org>2008-01-04 15:23:56 +0000
commit28aca134ab345e4cef425c63bcfa35c0949e1b4b (patch)
treea12ab7c0447a9bd7330f594d8bf94bcd2b6fc264 /framework/source
parent9a0f5f5a694112028553c503eaa8046d1a3660de (diff)
INTEGRATION: CWS fwk77 (1.11.92); FILE MERGED
2007/10/30 07:45:11 cd 1.11.92.1: #i83012# Fix warnings for 64bit
Diffstat (limited to 'framework/source')
-rw-r--r--framework/source/xml/menudocumenthandler.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/framework/source/xml/menudocumenthandler.cxx b/framework/source/xml/menudocumenthandler.cxx
index ce4be91e0fe4..04f5c3e9bdb5 100644
--- a/framework/source/xml/menudocumenthandler.cxx
+++ b/framework/source/xml/menudocumenthandler.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: menudocumenthandler.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: rt $ $Date: 2007-04-03 13:50:50 $
+ * last change: $Author: obo $ $Date: 2008-01-04 16:23:56 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -241,7 +241,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