summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-11-26 18:28:41 +0200
committerTor Lillqvist <tml@collabora.com>2013-11-26 18:29:01 +0200
commite06ef25aea312380411753f735da14a1e224a2e2 (patch)
tree8dd393c5b691b4d1138bf2ea8c66887268786700 /sw
parentf3d1f950aa259ebe8e3b8c65091e5b6e4462e0e3 (diff)
WaE: int/sal_Int32 format confusion
Change-Id: I0dc0bd5c8a751fbda93eeffecc1a01496427da66
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/docnode/nodedump.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/docnode/nodedump.cxx b/sw/source/core/docnode/nodedump.cxx
index 5934911a2219..cd0bb5e25f0a 100644
--- a/sw/source/core/docnode/nodedump.cxx
+++ b/sw/source/core/docnode/nodedump.cxx
@@ -494,7 +494,7 @@ void SwRedlineTbl::dumpAsXml( xmlTextWriterPtr w )
//writer.writeFormatAttribute( "ptr", "%p", &pStartContent );
//writer.writeFormatAttribute( "content_index", "%d", pStartContent.GetIndex() );
//writer.endElement( ); // swindex
- writer.writeFormatAttribute( "swindex_content_index", TMP_FORMAT, pStartContent.GetIndex() );
+ writer.writeFormatAttribute( "swindex_content_index", TMP_FORMAT_I32, pStartContent.GetIndex() );
}
//writer.endElement( ); // swnodeindex
}
@@ -534,7 +534,7 @@ void SwRedlineTbl::dumpAsXml( xmlTextWriterPtr w )
//writer.writeFormatAttribute( "ptr", "%p", &pEndContent );
//writer.writeFormatAttribute( "content_index", "%d", pEndContent.GetIndex() );
//writer.endElement( ); // swindex
- writer.writeFormatAttribute( "swindex_content_index", TMP_FORMAT, pEndContent.GetIndex() );
+ writer.writeFormatAttribute( "swindex_content_index", TMP_FORMAT_I32, pEndContent.GetIndex() );
}
//writer.endElement( ); // swnodeindex
}