diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 19:57:12 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:24:40 +0100 |
commit | c35616dd73c8b05e422f3b561f21e21f5489d574 (patch) | |
tree | 975aab3fbaecae0803be0783b25a0f89684dcc95 /sfx2/source/config | |
parent | f0dc6cda7580a2e070d3ad550fb4cd8577179203 (diff) |
bool improvements
Change-Id: I4a09bffccc0049d81ea3113e79184f64b026a4ba
Diffstat (limited to 'sfx2/source/config')
-rw-r--r-- | sfx2/source/config/evntconf.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/config/evntconf.cxx b/sfx2/source/config/evntconf.cxx index 06f056d28483..c70d94caf9e9 100644 --- a/sfx2/source/config/evntconf.cxx +++ b/sfx2/source/config/evntconf.cxx @@ -82,7 +82,7 @@ bool SfxEventNamesItem::operator==( const SfxPoolItem& rAttr ) const const SfxEventNamesList& rOther = ( (SfxEventNamesItem&) rAttr ).aEventsList; if ( rOwn.size() != rOther.size() ) - return sal_False; + return false; for ( size_t nNo = 0, nCnt = rOwn.size(); nNo < nCnt; ++nNo ) { @@ -91,10 +91,10 @@ bool SfxEventNamesItem::operator==( const SfxPoolItem& rAttr ) const if ( pOwn->mnId != pOther->mnId || pOwn->maEventName != pOther->maEventName || pOwn->maUIName != pOther->maUIName ) - return sal_False; + return false; } - return sal_True; + return true; } |