summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/wrtw8num.cxx
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2017-02-24 09:59:04 +0300
committerMike Kaganski <mike.kaganski@collabora.com>2017-02-24 15:12:02 +0000
commit2213bfefb347e3ee00274714ee25ead97be55537 (patch)
treee0b8776fc0a29ca5833f85c1f1674b0cb210b6b6 /sw/source/filter/ww8/wrtw8num.cxx
parent40e55cf24dd30acd6d928cd764bc597dd11f5fad (diff)
Rename sprm ids to match [MS-DOC] documentation
Change-Id: Iab5b7c10c635dfdf832df3d0864939a7984282d1 Reviewed-on: https://gerrit.libreoffice.org/34599 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sw/source/filter/ww8/wrtw8num.cxx')
-rw-r--r--sw/source/filter/ww8/wrtw8num.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/filter/ww8/wrtw8num.cxx b/sw/source/filter/ww8/wrtw8num.cxx
index f8ad4abf40a5..d4d1843a623f 100644
--- a/sw/source/filter/ww8/wrtw8num.cxx
+++ b/sw/source/filter/ww8/wrtw8num.cxx
@@ -290,9 +290,9 @@ void WW8AttributeOutput::NumberingLevel( sal_uInt8 /*nLevel*/,
{
sal_uInt16 nFontID = m_rWW8Export.m_aFontHelper.GetId( *pFont );
- m_rWW8Export.InsUInt16( NS_sprm::LN_CRgFtc0 );
+ m_rWW8Export.InsUInt16( NS_sprm::sprmCRgFtc0 );
m_rWW8Export.InsUInt16( nFontID );
- m_rWW8Export.InsUInt16( NS_sprm::LN_CRgFtc2 );
+ m_rWW8Export.InsUInt16( NS_sprm::sprmCRgFtc2 );
m_rWW8Export.InsUInt16( nFontID );
}
@@ -303,9 +303,9 @@ void WW8AttributeOutput::NumberingLevel( sal_uInt8 /*nLevel*/,
int nIndex = m_rWW8Export.GetGrfIndex(*pBrush);
if ( nIndex != -1 )
{
- m_rWW8Export.InsUInt16(NS_sprm::LN_CPbiIBullet);
+ m_rWW8Export.InsUInt16(NS_sprm::sprmCPbiIBullet);
m_rWW8Export.InsUInt32(nIndex);
- m_rWW8Export.InsUInt16(NS_sprm::LN_CPbiGrf);
+ m_rWW8Export.InsUInt16(NS_sprm::sprmCPbiGrf);
m_rWW8Export.InsUInt16(1);
}
}