diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:00:11 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:22 +0100 |
commit | 2fd074b23fad94abcfafa52193c29985789cdb8a (patch) | |
tree | 3ed0b74fef904cfcb1ee364b009bb70601165a52 /starmath/source/node.cxx | |
parent | 48fc43550abb5fa62abef5b3fc977e24d0ab56f0 (diff) |
bool improvements
Change-Id: I3f0749caeae8a772e6fb668eefc9d8784e7f22b5
Diffstat (limited to 'starmath/source/node.cxx')
-rw-r--r-- | starmath/source/node.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/node.cxx b/starmath/source/node.cxx index 334e52674755..6ffd0fb2531f 100644 --- a/starmath/source/node.cxx +++ b/starmath/source/node.cxx @@ -862,7 +862,7 @@ void SmTableNode::Arrange(const OutputDevice &rDev, const SmFormat &rFormat) nFormulaBaseline = GetBaseline(); else { - SmTmpDevice aTmpDev ((OutputDevice &) rDev, sal_True); + SmTmpDevice aTmpDev ((OutputDevice &) rDev, true); aTmpDev.SetFont(GetFont()); SmRect aRect = (SmRect(aTmpDev, &rFormat, OUString("a"), @@ -2098,7 +2098,7 @@ void SmFontNode::CreateTextFromNode(OUString &rText) rText += ::rtl::math::doubleToUString( static_cast<double>(aFontSize), rtl_math_StringFormat_Automatic, - rtl_math_DecimalPlaces_Max, '.', sal_True); + rtl_math_DecimalPlaces_Max, '.', true); rText += " "; } break; |