diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-25 17:00:40 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-26 12:28:08 +0100 |
commit | ad5dcd60a9f9fef63d74259b11faabb285abc761 (patch) | |
tree | e25224a7e674af4b4179c448d2dc33c281423b55 /cui/source | |
parent | 23382371ad97d26b44256aaae89242f2e39cd639 (diff) |
bool improvements
Change-Id: I5649e051b59143e1d490a7a920465422a25d814c
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/tabpages/border.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/tabpages/border.cxx b/cui/source/tabpages/border.cxx index e54f266f0075..0247ca8f077b 100644 --- a/cui/source/tabpages/border.cxx +++ b/cui/source/tabpages/border.cxx @@ -716,14 +716,14 @@ sal_Bool SvxBorderTabPage::FillItemSet( SfxItemSet& rCoreAttrs ) if ( !pOldBoxItem || !( *pOldBoxItem == aBoxItem ) ) { rCoreAttrs.Put( aBoxItem ); - bAttrsChanged |= sal_True; + bAttrsChanged |= true; } const SfxPoolItem* pOld = GetOldItem( rCoreAttrs, SID_ATTR_BORDER_INNER, sal_False ); if ( !pOld || !( *(const SvxBoxInfoItem*)pOld == aBoxInfoItem ) ) { rCoreAttrs.Put( aBoxInfoItem ); - bAttrsChanged |= sal_True; + bAttrsChanged |= true; } } else |