summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-24 11:13:09 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-24 11:13:42 +0100
commit146c7c5c89d9ce26c3de951ff049d36df1b5857b (patch)
treed66d72cb77002c96f528790f88012617243ccbf3 /svtools
parent569756aaf4606313297eace88b3ad5a6f57d8329 (diff)
toolkit: sal_Bool -> bool
Change-Id: I5153c4413004d1b50cc503b3e70657bc831a5793
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/uno/unoiface.cxx4
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 );
}
}