diff options
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/uno/unoiface.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/uno/unoiface.cxx b/svtools/source/uno/unoiface.cxx index 597e43a71806..1ecfdef91aea 100644 --- a/svtools/source/uno/unoiface.cxx +++ b/svtools/source/uno/unoiface.cxx @@ -220,10 +220,10 @@ void VCLXMultiLineEdit::setText( const OUString& aText ) throw(::com::sun::star: pEdit->SetText( aText ); // #107218# Call same listeners like VCL would do after user interaction - SetSynthesizingVCLEvent( sal_True ); + SetSynthesizingVCLEvent( true ); pEdit->SetModifyFlag(); pEdit->Modify(); - SetSynthesizingVCLEvent( sal_False ); + SetSynthesizingVCLEvent( false ); } } |