diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-20 14:17:27 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-21 12:19:24 +0200 |
commit | b7180bd14fb5684886f8f90dbd1fa59bf6f0193a (patch) | |
tree | f9d36ff11842732fb75de35f2de2dff6c686761e /forms | |
parent | 7e06ccad8f4d654585f3aa6dbdf2933370d60756 (diff) |
editeng: sal_Bool->bool
Change-Id: Ia9b76985ea0b9c511208b8283c8487c89aa67b88
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/richtext/richtextimplcontrol.cxx | 2 | ||||
-rw-r--r-- | forms/source/richtext/richtextvclcontrol.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/forms/source/richtext/richtextimplcontrol.cxx b/forms/source/richtext/richtextimplcontrol.cxx index 164b573e48ba..8ae8f53c65bd 100644 --- a/forms/source/richtext/richtextimplcontrol.cxx +++ b/forms/source/richtext/richtextimplcontrol.cxx @@ -630,7 +630,7 @@ namespace frm lcl_inflate( aPlayground, -aOnePixel.Width(), -aOnePixel.Height() ); // actually draw the content - m_pEngine->Draw( _pDev, aPlayground, Point(), sal_True ); + m_pEngine->Draw( _pDev, aPlayground, Point(), true ); _pDev->Pop(); } diff --git a/forms/source/richtext/richtextvclcontrol.cxx b/forms/source/richtext/richtextvclcontrol.cxx index 4b205d211716..bf7d0b5c2da8 100644 --- a/forms/source/richtext/richtextvclcontrol.cxx +++ b/forms/source/richtext/richtextvclcontrol.cxx @@ -97,7 +97,7 @@ namespace frm getView().HideCursor(); sal_Bool bOldUpdateMode = getEngine().GetUpdateMode(); // TODO: guard? - getEngine().SetUpdateMode( sal_False ); + getEngine().SetUpdateMode( false ); getView().SetAttribs( _rAttributesToApply ); |