Kaydet (Commit) e7ecf663 authored tarafından Miklos Vajna's avatar Miklos Vajna

OOXMLFastContextHandlerValue: clean up duplicated constant

Change-Id: Ia09e30958392b660f694e8eefb6605108b3c0b57
üst e20e2715
...@@ -52,8 +52,6 @@ static const sal_uInt8 cFieldStart = 0x13; ...@@ -52,8 +52,6 @@ static const sal_uInt8 cFieldStart = 0x13;
static const sal_uInt8 cFieldSep = 0x14; static const sal_uInt8 cFieldSep = 0x14;
static const sal_uInt8 cFieldEnd = 0x15; static const sal_uInt8 cFieldEnd = 0x15;
static const sal_uInt16 paragraphProperties_sprmPFBiDi = 0x2441;
namespace writerfilter { namespace writerfilter {
namespace ooxml namespace ooxml
{ {
...@@ -1605,7 +1603,7 @@ void OOXMLFastContextHandlerValue::setDefaultBooleanValue() ...@@ -1605,7 +1603,7 @@ void OOXMLFastContextHandlerValue::setDefaultBooleanValue()
// Paragraph properties are not always 'true' by default // Paragraph properties are not always 'true' by default
// For example - RTL layout of paragraph is by default 'false' (look in this link for 'sprmPFBiDi') // For example - RTL layout of paragraph is by default 'false' (look in this link for 'sprmPFBiDi')
// http://msdn.microsoft.com/en-us/library/dd923496%28v=office.12%29.aspx // http://msdn.microsoft.com/en-us/library/dd923496%28v=office.12%29.aspx
if (getId() == paragraphProperties_sprmPFBiDi) if (getId() == NS_sprm::LN_PFBiDi)
{ {
bSet = false; bSet = false;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment