diff options
author | Noel Grandin <noel@peralex.com> | 2014-03-24 11:45:27 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-03-25 14:32:55 +0200 |
commit | 2d3a1d2a462c556f58bcae4371376cc8e4b16af3 (patch) | |
tree | 59129af882eb76c934e990b55fec5d779fe1b5ca /svtools/source/edit | |
parent | bdd2df77234e1df3d9795f45239d2f442e90670c (diff) |
svtools: sal_Bool->bool
Change-Id: I6c57a52b4fc3ecb993af4526fefcca352ad269b5
Diffstat (limited to 'svtools/source/edit')
-rw-r--r-- | svtools/source/edit/svmedit2.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/edit/svmedit2.cxx b/svtools/source/edit/svmedit2.cxx index 56d4c5e568ce..c2c2dff3d845 100644 --- a/svtools/source/edit/svmedit2.cxx +++ b/svtools/source/edit/svmedit2.cxx @@ -39,12 +39,12 @@ ExtMultiLineEdit::~ExtMultiLineEdit() { } -void ExtMultiLineEdit::InsertText( const OUString& rNew, sal_Bool ) +void ExtMultiLineEdit::InsertText( const OUString& rNew, bool ) { GetTextView()->InsertText( rNew, false ); } -void ExtMultiLineEdit::SetAutoScroll( sal_Bool bAutoScroll ) +void ExtMultiLineEdit::SetAutoScroll( bool bAutoScroll ) { GetTextView()->SetAutoScroll( bAutoScroll ); } |