summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-04-23 17:08:39 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-04-23 21:08:20 +0100
commit44b352c8e84f4a16eea3fc14123a28b7ec232f12 (patch)
treeb1c3fed08451042bce3aeba880c982d6e6e9e5c5 /sw
parent4eaf7792423802736904a4390355b5718a122d48 (diff)
fix scope
Change-Id: I114d3d0d45614f8af5004014fd0a61027fdc9e54
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/ww8/wrtww8.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx
index 336050a18e0a..8e2253e2dce7 100644
--- a/sw/source/filter/ww8/wrtww8.cxx
+++ b/sw/source/filter/ww8/wrtww8.cxx
@@ -812,7 +812,6 @@ bool WW8_WrMagicTable::Write( WW8Export& rWrt )
void WW8_WrMagicTable::Append( WW8_CP nCp, sal_uLong nData)
{
- SVBT32 nLittle;
/*
Tell the undocumented table hack that everything between here and the last
table position is nontable text, don't do it if the previous position is
@@ -820,6 +819,7 @@ void WW8_WrMagicTable::Append( WW8_CP nCp, sal_uLong nData)
*/
if ((!Count()) || (Prev() != nCp))
{
+ SVBT32 nLittle;
UInt32ToSVBT32(nData,nLittle);
WW8_WrPlc1::Append(nCp, nLittle);
}