diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 19:57:21 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:24:40 +0100 |
commit | 9d29f9913faaefe350d7e056330368b3dfa26d49 (patch) | |
tree | 5daa4993ba62911ee9c833e4dcc09556ec5fb612 | |
parent | c35616dd73c8b05e422f3b561f21e21f5489d574 (diff) |
bool improvements
Change-Id: I6cf511b92383f3cd60923620518b9233b82850c0
-rw-r--r-- | include/svl/filerec.hxx | 4 | ||||
-rw-r--r-- | include/svl/zformat.hxx | 2 | ||||
-rw-r--r-- | svl/source/config/ctloptions.cxx | 16 | ||||
-rw-r--r-- | svl/source/filerec/filerec.cxx | 12 | ||||
-rw-r--r-- | svl/source/fsstor/fsfactory.cxx | 2 | ||||
-rw-r--r-- | svl/source/fsstor/fsstorage.cxx | 2 | ||||
-rw-r--r-- | svl/source/inc/passwordcontainer.hxx | 2 | ||||
-rw-r--r-- | svl/source/inc/poolio.hxx | 6 | ||||
-rw-r--r-- | svl/source/items/cntwall.cxx | 4 | ||||
-rw-r--r-- | svl/source/items/ilstitem.cxx | 2 | ||||
-rw-r--r-- | svl/source/items/itempool.cxx | 24 | ||||
-rw-r--r-- | svl/source/items/itemset.cxx | 2 | ||||
-rw-r--r-- | svl/source/items/lckbitem.cxx | 4 | ||||
-rw-r--r-- | svl/source/items/poolio.cxx | 46 | ||||
-rw-r--r-- | svl/source/items/rngitem.cxx | 10 | ||||
-rw-r--r-- | svl/source/items/srchitem.cxx | 16 | ||||
-rw-r--r-- | svl/source/items/style.cxx | 14 | ||||
-rw-r--r-- | svl/source/passwordcontainer/passwordcontainer.cxx | 8 | ||||
-rw-r--r-- | svl/source/undo/undo.cxx | 14 |
19 files changed, 95 insertions, 95 deletions
diff --git a/include/svl/filerec.hxx b/include/svl/filerec.hxx index b7aca769a8bf..c40dfde37225 100644 --- a/include/svl/filerec.hxx +++ b/include/svl/filerec.hxx @@ -245,7 +245,7 @@ protected: void Construct_Impl( SvStream *pStream, sal_uInt8 nTag ) { _pStream = pStream; - _bSkipped = sal_False; + _bSkipped = false; _nPreTag = nTag; } inline bool SetHeader_Impl( sal_uInt32 nHeader ); @@ -639,7 +639,7 @@ inline SfxMiniRecordReader::~SfxMiniRecordReader() inline void SfxMiniRecordReader::Skip() { _pStream->Seek(_nEofRec); - _bSkipped = sal_True; + _bSkipped = true; } /** Get the pre-tag of this record diff --git a/include/svl/zformat.hxx b/include/svl/zformat.hxx index 10ec8c639fb6..546be334590c 100644 --- a/include/svl/zformat.hxx +++ b/include/svl/zformat.hxx @@ -91,7 +91,7 @@ public: #endif SvNumberNatNum() : eLang( LANGUAGE_DONTKNOW ), nNum(0), - bDBNum(0), bDate(0), bSet(0) {} + bDBNum(false), bDate(false), bSet(false) {} bool IsComplete() const { return bSet && eLang != LANGUAGE_DONTKNOW; } sal_uInt8 GetRawNum() const { return nNum; } sal_uInt8 GetNatNum() const { return bDBNum ? MapDBNumToNatNum( nNum, eLang, bDate ) : nNum; } diff --git a/svl/source/config/ctloptions.cxx b/svl/source/config/ctloptions.cxx index feb66a5d255d..bbad8e9e14f0 100644 --- a/svl/source/config/ctloptions.cxx +++ b/svl/source/config/ctloptions.cxx @@ -35,7 +35,7 @@ using namespace ::com::sun::star; using namespace ::com::sun::star::uno; -#define CFG_READONLY_DEFAULT sal_False +#define CFG_READONLY_DEFAULT false // SvtCJKOptions_Impl ---------------------------------------------------------- @@ -112,11 +112,11 @@ SvtCTLOptions_Impl::SvtCTLOptions_Impl() : utl::ConfigItem("Office.Common/I18N/CTL"), - m_bIsLoaded ( sal_False ), - m_bCTLFontEnabled ( sal_False ), - m_bCTLSequenceChecking ( sal_False ), - m_bCTLRestricted ( sal_False ), - m_bCTLTypeAndReplace ( sal_False ), + m_bIsLoaded ( false ), + m_bCTLFontEnabled ( false ), + m_bCTLSequenceChecking ( false ), + m_bCTLRestricted ( false ), + m_bCTLTypeAndReplace ( false ), m_eCTLCursorMovement ( SvtCTLOptions::MOVEMENT_LOGICAL ), m_eCTLTextNumerals ( SvtCTLOptions::NUMERALS_ARABIC ), @@ -311,7 +311,7 @@ void SvtCTLOptions_Impl::Load() if (bAutoEnableCTL) { - m_bCTLFontEnabled = sal_True; + m_bCTLFontEnabled = true; sal_uInt16 nLanguage = SvtSysLocale().GetLanguageTag().getLanguageType(); //enable sequence checking for the appropriate languages m_bCTLSequenceChecking = m_bCTLRestricted = m_bCTLTypeAndReplace = @@ -321,7 +321,7 @@ void SvtCTLOptions_Impl::Load() } } - m_bIsLoaded = sal_True; + m_bIsLoaded = true; } void SvtCTLOptions_Impl::SetCTLFontEnabled( bool _bEnabled ) { diff --git a/svl/source/filerec/filerec.cxx b/svl/source/filerec/filerec.cxx index bec5a6fcc144..26f8233cbfc2 100644 --- a/svl/source/filerec/filerec.cxx +++ b/svl/source/filerec/filerec.cxx @@ -328,7 +328,7 @@ bool SfxSingleRecordReader::FindHeader_Impl SFX_REC_TYP(nHeader)); if ( nTypes & _nRecordType ) // ==> gefunden - return sal_True; + return true; // error => Such-Schleife abbrechen break; @@ -343,7 +343,7 @@ bool SfxSingleRecordReader::FindHeader_Impl // Fehler setzen und zur"uck-seeken _pStream->SetError( ERRCODE_IO_WRONGFORMAT ); _pStream->Seek( nStartPos ); - return sal_False; + return false; } @@ -377,7 +377,7 @@ sal_uInt32 SfxMultiFixRecordWriter::Close( bool bSeekToEndOfRec ) if ( !_bHeaderOk ) { // Position hinter Record merken, um sie restaurieren zu k"onnen - sal_uInt32 nEndPos = SfxSingleRecordWriter::Close( sal_False ); + sal_uInt32 nEndPos = SfxSingleRecordWriter::Close( false ); // gegen"uber SfxSingleRecord erweiterten Header schreiben _pStream->WriteUInt16( _nContentCount ); @@ -507,7 +507,7 @@ sal_uInt32 SfxMultiVarRecordWriter::Close( bool bSeekToEndOfRec ) _pStream->WriteUInt32( _aContentOfs[n] ); // SfxMultiFixRecordWriter::Close() "uberspringen! - sal_uInt32 nEndPos = SfxSingleRecordWriter::Close( sal_False ); + sal_uInt32 nEndPos = SfxSingleRecordWriter::Close( false ); // eigenen Header schreiben _pStream->WriteUInt16( _nContentCount ); @@ -670,10 +670,10 @@ bool SfxMultiRecordReader::GetContent() // ContentNo weiterz"ahlen ++_nContentNo; - return sal_True; + return true; } - return sal_False; + return false; } diff --git a/svl/source/fsstor/fsfactory.cxx b/svl/source/fsstor/fsfactory.cxx index 2cb491be78e4..2790b6f58537 100644 --- a/svl/source/fsstor/fsfactory.cxx +++ b/svl/source/fsstor/fsfactory.cxx @@ -62,7 +62,7 @@ uno::Reference< uno::XInterface > SAL_CALL FSStorageFactory::createInstance() { OUString aTempURL; - aTempURL = ::utl::TempFile( NULL, sal_True ).GetURL(); + aTempURL = ::utl::TempFile( NULL, true ).GetURL(); if ( aTempURL.isEmpty() ) throw uno::RuntimeException(); // TODO: can not create tempfile diff --git a/svl/source/fsstor/fsstorage.cxx b/svl/source/fsstor/fsstorage.cxx index 00ba968ffd54..22e6d793cf55 100644 --- a/svl/source/fsstor/fsstorage.cxx +++ b/svl/source/fsstor/fsstorage.cxx @@ -172,7 +172,7 @@ sal_Bool FSStorage::MakeFolderNoUI( const OUString& rFolder ) uno::Reference< ucb::XCommandEnvironment >(), comphelper::getProcessComponentContext(), aParent ) ) - return ::utl::UCBContentHelper::MakeFolder( aParent, aTitle, aResultContent, sal_False ); + return ::utl::UCBContentHelper::MakeFolder( aParent, aTitle, aResultContent, false ); return sal_False; } diff --git a/svl/source/inc/passwordcontainer.hxx b/svl/source/inc/passwordcontainer.hxx index 2e565f7f2577..9f901fcf6fdc 100644 --- a/svl/source/inc/passwordcontainer.hxx +++ b/svl/source/inc/passwordcontainer.hxx @@ -136,7 +136,7 @@ public: if ( nStatus == PERSISTENT_RECORD ) return m_bHasPersPass; - return sal_False; + return false; } ::std::vector< OUString > GetMemPasswords() const diff --git a/svl/source/inc/poolio.hxx b/svl/source/inc/poolio.hxx index d3e2a8edb40e..53c0de01a61f 100644 --- a/svl/source/inc/poolio.hxx +++ b/svl/source/inc/poolio.hxx @@ -156,7 +156,7 @@ struct SfxItemPool_Impl OSL_FAIL( #nTag ); /*! s.u. */ \ /*! error-code setzen und auswerten! */ \ (rStream).SetError(SVSTREAM_FILEFORMAT_ERROR); \ - pImp->bStreaming = sal_False; \ + pImp->bStreaming = false; \ return rStream; \ } \ } @@ -169,7 +169,7 @@ struct SfxItemPool_Impl OSL_FAIL( #nTag ); /*! s.u. */ \ /*! error-code setzen und auswerten! */ \ (rStream).SetError(SVSTREAM_FILEFORMAT_ERROR); \ - pImp->bStreaming = sal_False; \ + pImp->bStreaming = false; \ delete pPointer; \ return rStream; \ } \ @@ -183,7 +183,7 @@ struct SfxItemPool_Impl OSL_FAIL( #nTag1 ); /*! s.u. */ \ /*! error-code setzen und auswerten! */ \ (rStream).SetError(SVSTREAM_FILEFORMAT_ERROR); \ - pImp->bStreaming = sal_False; \ + pImp->bStreaming = false; \ return rStream; \ } \ } diff --git a/svl/source/items/cntwall.cxx b/svl/source/items/cntwall.cxx index 585e6bb08eea..1b5f04e4fef1 100644 --- a/svl/source/items/cntwall.cxx +++ b/svl/source/items/cntwall.cxx @@ -48,7 +48,7 @@ CntWallpaperItem::CntWallpaperItem( sal_uInt16 which, SvStream& rStream, sal_uIn _aURL = readUnicodeString(rStream, nVersion >= 1); // !!! Color stream operators do not work - they discard any // transparency info !!! - _nColor.Read( rStream, sal_True ); + _nColor.Read( rStream, true ); rStream >> _nStyle; } else @@ -120,7 +120,7 @@ SvStream& CntWallpaperItem::Store( SvStream& rStream, sal_uInt16 ) const // !!! Color stream operators do not work - they discard any // transparency info !!! // ??? Why the hell Color::Write(...) isn't const ??? - (const_cast< CntWallpaperItem* >(this))->_nColor.Write( rStream, sal_True ); + (const_cast< CntWallpaperItem* >(this))->_nColor.Write( rStream, true ); rStream.WriteUInt16( _nStyle ); return rStream; diff --git a/svl/source/items/ilstitem.cxx b/svl/source/items/ilstitem.cxx index 53d4bb730449..ab7c3f82f1ce 100644 --- a/svl/source/items/ilstitem.cxx +++ b/svl/source/items/ilstitem.cxx @@ -59,7 +59,7 @@ SfxIntegerListItem::~SfxIntegerListItem() bool SfxIntegerListItem::operator==( const SfxPoolItem& rPoolItem ) const { if ( !rPoolItem.ISA( SfxIntegerListItem ) ) - return sal_False; + return false; const SfxIntegerListItem rItem = (const SfxIntegerListItem&) rPoolItem; return rItem.m_aList == m_aList; diff --git a/svl/source/items/itempool.cxx b/svl/source/items/itempool.cxx index 83e2e12655ab..b5000d6783c1 100644 --- a/svl/source/items/itempool.cxx +++ b/svl/source/items/itempool.cxx @@ -101,7 +101,7 @@ const SfxPoolItem* SfxItemPool::GetPoolDefaultItem( sal_uInt16 nWhich ) const pRet = pImp->mpSecondary->GetPoolDefaultItem( nWhich ); else { - SFX_ASSERT( 0, nWhich, "unknown Which-Id - cannot get pool default" ); + SFX_ASSERT( false, nWhich, "unknown Which-Id - cannot get pool default" ); pRet = 0; } return pRet; @@ -125,7 +125,7 @@ bool SfxItemPool::IsItemFlag( sal_uInt16 nWhich, sal_uInt16 nFlag ) const return pPool->IsItemFlag_Impl( pPool->GetIndex_Impl(nWhich), nFlag); } DBG_ASSERT( !IsWhich(nWhich), "unknown which-id" ); - return sal_False; + return false; } // ----------------------------------------------------------------------- @@ -233,7 +233,7 @@ SfxItemPool::SfxItemPool DBG_CTOR(SfxItemPool, 0); pImp->eDefMetric = rPool.pImp->eDefMetric; pImp->nVersion = rPool.pImp->nVersion; - pImp->bStreaming = sal_False; + pImp->bStreaming = false; pImp->nLoadingVersion = 0; pImp->nInitRefCount = 1; pImp->nVerStart = rPool.pImp->nVerStart; @@ -653,7 +653,7 @@ void SfxItemPool::SetPoolDefaultItem(const SfxPoolItem &rItem) pImp->mpSecondary->SetPoolDefaultItem(rItem); else { - SFX_ASSERT( 0, rItem.Which(), "unknown Which-Id - cannot set pool default" ); + SFX_ASSERT( false, rItem.Which(), "unknown Which-Id - cannot set pool default" ); } } @@ -678,7 +678,7 @@ void SfxItemPool::ResetPoolDefaultItem( sal_uInt16 nWhichId ) pImp->mpSecondary->ResetPoolDefaultItem(nWhichId); else { - SFX_ASSERT( 0, nWhichId, "unknown Which-Id - cannot set pool default" ); + SFX_ASSERT( false, nWhichId, "unknown Which-Id - cannot set pool default" ); } } @@ -872,7 +872,7 @@ void SfxItemPool::Remove( const SfxPoolItem& rItem ) ReleaseRef( *p ); else { - SFX_ASSERT( 0, rItem.Which(), "removing Item without ref" ); + SFX_ASSERT( false, rItem.Which(), "removing Item without ref" ); } // ggf. kleinstmoegliche freie Position merken @@ -889,7 +889,7 @@ void SfxItemPool::Remove( const SfxPoolItem& rItem ) } // nicht vorhanden - SFX_ASSERT( 0, rItem.Which(), "removing Item not in Pool" ); + SFX_ASSERT( false, rItem.Which(), "removing Item not in Pool" ); } // ----------------------------------------------------------------------- @@ -902,7 +902,7 @@ const SfxPoolItem& SfxItemPool::GetDefaultItem( sal_uInt16 nWhich ) const { if ( pImp->mpSecondary ) return pImp->mpSecondary->GetDefaultItem( nWhich ); - SFX_ASSERT( 0, nWhich, "unknown which - dont ask me for defaults" ); + SFX_ASSERT( false, nWhich, "unknown which - dont ask me for defaults" ); } DBG_ASSERT( pImp->ppStaticDefaults, "no defaults known - dont ask me for defaults" ); @@ -975,7 +975,7 @@ const SfxPoolItem *SfxItemPool::GetItem2(sal_uInt16 nWhich, sal_uInt32 nOfst) co { if ( pImp->mpSecondary ) return pImp->mpSecondary->GetItem2( nWhich, nOfst ); - SFX_ASSERT( 0, nWhich, "unknown Which-Id - cannot resolve surrogate" ); + SFX_ASSERT( false, nWhich, "unknown Which-Id - cannot resolve surrogate" ); return 0; } @@ -1000,7 +1000,7 @@ sal_uInt32 SfxItemPool::GetItemCount2(sal_uInt16 nWhich) const { if ( pImp->mpSecondary ) return pImp->mpSecondary->GetItemCount2( nWhich ); - SFX_ASSERT( 0, nWhich, "unknown Which-Id - cannot resolve surrogate" ); + SFX_ASSERT( false, nWhich, "unknown Which-Id - cannot resolve surrogate" ); return 0; } @@ -1037,7 +1037,7 @@ sal_uInt16 SfxItemPool::GetSlotId( sal_uInt16 nWhich, sal_Bool bDeep ) const { if ( pImp->mpSecondary && bDeep ) return pImp->mpSecondary->GetSlotId(nWhich); - SFX_ASSERT( 0, nWhich, "unknown Which-Id - cannot get slot-id" ); + SFX_ASSERT( false, nWhich, "unknown Which-Id - cannot get slot-id" ); return 0; } @@ -1072,7 +1072,7 @@ sal_uInt16 SfxItemPool::GetTrueSlotId( sal_uInt16 nWhich, sal_Bool bDeep ) const { if ( pImp->mpSecondary && bDeep ) return pImp->mpSecondary->GetTrueSlotId(nWhich); - SFX_ASSERT( 0, nWhich, "unknown Which-Id - cannot get slot-id" ); + SFX_ASSERT( false, nWhich, "unknown Which-Id - cannot get slot-id" ); return 0; } return pItemInfos[nWhich - pImp->mnStart]._nSID; diff --git a/svl/source/items/itemset.cxx b/svl/source/items/itemset.cxx index b305121cc50e..e4155cc35d1d 100644 --- a/svl/source/items/itemset.cxx +++ b/svl/source/items/itemset.cxx @@ -1478,7 +1478,7 @@ sal_uInt16 SfxItemSet::GetWhichByPos( sal_uInt16 nPos ) const nPos = nPos - n; pPtr += 2; } - DBG_ASSERT( sal_False, "Hier sind wir falsch" ); + DBG_ASSERT( false, "Hier sind wir falsch" ); return 0; } diff --git a/svl/source/items/lckbitem.cxx b/svl/source/items/lckbitem.cxx index b2655095936c..eeb25ec8bfe9 100644 --- a/svl/source/items/lckbitem.cxx +++ b/svl/source/items/lckbitem.cxx @@ -38,7 +38,7 @@ SfxLockBytesItem::SfxLockBytesItem( sal_uInt16 nW, SvStream &rStream ) : SfxPoolItem( nW ) { rStream.Seek( 0L ); - _xVal = new SvLockBytes( new SvMemoryStream(), sal_True ); + _xVal = new SvLockBytes( new SvMemoryStream(), true ); SvStream aLockBytesStream( _xVal ); rStream >> aLockBytesStream; @@ -123,7 +123,7 @@ bool SfxLockBytesItem::PutValue( const com::sun::star::uno::Any& rVal, sal_uInt8 pStream->Write( (void*)aSeq.getConstArray(), aSeq.getLength() ); pStream->Seek(0); - _xVal = new SvLockBytes( pStream, sal_True ); + _xVal = new SvLockBytes( pStream, true ); } else _xVal = NULL; diff --git a/svl/source/items/poolio.cxx b/svl/source/items/poolio.cxx index b96c2d6d5245..9c19a4fdde42 100644 --- a/svl/source/items/poolio.cxx +++ b/svl/source/items/poolio.cxx @@ -114,7 +114,7 @@ SvStream &SfxItemPool::Store(SvStream &rStream) const pStoreMaster = pStoreMaster->pImp->mpSecondary; // Alter-Header (Version des Pools an sich und Inhalts-Version 0xffff) - pImp->bStreaming = sal_True; + pImp->bStreaming = true; if ( !pStoreMaster ) { rStream.WriteUInt16( rStream.GetVersion() >= SOFFICE_FILEFORMAT_50 @@ -273,7 +273,7 @@ SvStream &SfxItemPool::Store(SvStream &rStream) const if ( !rStream.GetError() && pImp->mpSecondary ) pImp->mpSecondary->Store( rStream ); - pImp->bStreaming = sal_False; + pImp->bStreaming = false; return rStream; } @@ -507,7 +507,7 @@ SvStream &SfxItemPool::Load(SvStream &rStream) pLoadMaster = pLoadMaster->pImp->mpSecondary; // Gesamt Header einlesen - pImp->bStreaming = sal_True; + pImp->bStreaming = true; if ( !pLoadMaster ) { // Format-Version laden @@ -528,7 +528,7 @@ SvStream &SfxItemPool::Load(SvStream &rStream) if ( pImp->nMajorVer > SFX_ITEMPOOL_VER_MAJOR ) { rStream.SetError(SVSTREAM_FILEFORMAT_ERROR); - pImp->bStreaming = sal_False; + pImp->bStreaming = false; return rStream; } @@ -541,7 +541,7 @@ SvStream &SfxItemPool::Load(SvStream &rStream) SfxMiniRecordReader aPoolRec( &rStream, SFX_ITEMPOOL_REC ); if ( rStream.GetError() ) { - pImp->bStreaming = sal_False; + pImp->bStreaming = false; return rStream; } @@ -553,7 +553,7 @@ SvStream &SfxItemPool::Load(SvStream &rStream) SfxMiniRecordReader aPoolHeaderRec( &rStream, SFX_ITEMPOOL_REC_HEADER ); if ( rStream.GetError() ) { - pImp->bStreaming = sal_False; + pImp->bStreaming = false; return rStream; } @@ -567,7 +567,7 @@ SvStream &SfxItemPool::Load(SvStream &rStream) { rStream.SetError(SVSTREAM_FILEFORMAT_ERROR); aPoolRec.Skip(); - pImp->bStreaming = sal_False; + pImp->bStreaming = false; return rStream; } } @@ -577,7 +577,7 @@ SvStream &SfxItemPool::Load(SvStream &rStream) SfxMultiRecordReader aVerRec( &rStream, SFX_ITEMPOOL_REC_VERSIONMAP ); if ( rStream.GetError() ) { - pImp->bStreaming = sal_False; + pImp->bStreaming = false; return rStream; } @@ -704,7 +704,7 @@ SvStream &SfxItemPool::Load(SvStream &rStream) if ( aExternName != pImp->aName ) pImp->aName = OUString(); - pImp->bStreaming = sal_False; + pImp->bStreaming = false; return rStream; }; @@ -736,13 +736,13 @@ SvStream &SfxItemPool::Load1_Impl(SvStream &rStream) rStream >> pImp->nLoadingVersion; aExternName = SfxPoolItem::readByteString(rStream); bOwnPool = aExternName == pImp->aName; - pImp->bStreaming = sal_True; + pImp->bStreaming = true; //! solange wir keine fremden laden k"onnen if ( !bOwnPool ) { rStream.SetError(SVSTREAM_FILEFORMAT_ERROR); - pImp->bStreaming = sal_False; + pImp->bStreaming = false; return rStream; } @@ -751,7 +751,7 @@ SvStream &SfxItemPool::Load1_Impl(SvStream &rStream) pImp->nVersion < pImp->nLoadingVersion ) { rStream.SetError(ERRCODE_IO_WRONGVERSION); - pImp->bStreaming = sal_False; + pImp->bStreaming = false; return rStream; } @@ -1010,7 +1010,7 @@ SvStream &SfxItemPool::Load1_Impl(SvStream &rStream) if ( aExternName != pImp->aName ) pImp->aName = OUString(); - pImp->bStreaming = sal_False; + pImp->bStreaming = false; return rStream; } @@ -1090,7 +1090,7 @@ const SfxPoolItem* SfxItemPool::LoadSurrogate { // gemappte SlotId kann "ubernommen werden rWhich = nMappedWhich; - bResolvable = sal_True; + bResolvable = true; } } @@ -1134,7 +1134,7 @@ const SfxPoolItem* SfxItemPool::LoadSurrogate } } - SFX_ASSERT( sal_False, rWhich, "can't resolve Which-Id in LoadSurrogate" ); + SFX_ASSERT( false, rWhich, "can't resolve Which-Id in LoadSurrogate" ); } return 0; @@ -1178,7 +1178,7 @@ bool SfxItemPool::StoreSurrogate } rStream.WriteUInt32( SFX_ITEMS_NULL ); - return sal_True; + return true; } // ----------------------------------------------------------------------- @@ -1194,7 +1194,7 @@ sal_uInt32 SfxItemPool::GetSurrogate(const SfxPoolItem *pItem) const { if ( pImp->mpSecondary ) return pImp->mpSecondary->GetSurrogate( pItem ); - SFX_ASSERT( 0, pItem->Which(), "unknown Which-Id - dont ask me for surrogates" ); + SFX_ASSERT( false, pItem->Which(), "unknown Which-Id - dont ask me for surrogates" ); } // Pointer auf static- oder pool-dflt-Attribut? @@ -1210,7 +1210,7 @@ sal_uInt32 SfxItemPool::GetSurrogate(const SfxPoolItem *pItem) const if ( p == pItem ) return i; } - SFX_ASSERT( 0, pItem->Which(), "Item not in the pool"); + SFX_ASSERT( false, pItem->Which(), "Item not in the pool"); return SFX_ITEMS_NULL; } @@ -1374,7 +1374,7 @@ sal_uInt16 SfxItemPool::GetNewWhich { if ( pImp->mpSecondary ) return pImp->mpSecondary->GetNewWhich( nFileWhich ); - SFX_ASSERT( 0, nFileWhich, "unknown which in GetNewWhich()" ); + SFX_ASSERT( false, nFileWhich, "unknown which in GetNewWhich()" ); } // Version neuer/gleich/"alter? @@ -1496,11 +1496,11 @@ bool SfxItemPool::StoreItem( SvStream &rStream, const SfxPoolItem &rItem, DBG_ASSERT( !IsInvalidItem(&rItem), "cannot store invalid items" ); if ( IsSlot( rItem.Which() ) ) - return sal_False; + return false; const SfxItemPool *pPool = this; while ( !pPool->IsInStoringRange(rItem.Which()) ) if ( 0 == ( pPool = pPool->pImp->mpSecondary ) ) - return sal_False; + return false; DBG_ASSERT( !pImp->bInSetItem || !rItem.ISA(SfxSetItem), "SetItem contains ItemSet with SetItem" ); @@ -1508,7 +1508,7 @@ bool SfxItemPool::StoreItem( SvStream &rStream, const SfxPoolItem &rItem, sal_uInt16 nSlotId = pPool->GetSlotId( rItem.Which(), sal_True ); sal_uInt16 nItemVersion = rItem.GetVersion(pImp->mnFileFormatVersion); if ( USHRT_MAX == nItemVersion ) - return sal_False; + return false; rStream.WriteUInt16( rItem.Which() ).WriteUInt16( nSlotId ); if ( bDirect || !pPool->StoreSurrogate( rStream, &rItem ) ) @@ -1523,7 +1523,7 @@ bool SfxItemPool::StoreItem( SvStream &rStream, const SfxPoolItem &rItem, rStream.Seek( nIEnd ); } - return sal_True; + return true; } diff --git a/svl/source/items/rngitem.cxx b/svl/source/items/rngitem.cxx index db2bc0c86cd1..9e3154413045 100644 --- a/svl/source/items/rngitem.cxx +++ b/svl/source/items/rngitem.cxx @@ -82,8 +82,8 @@ bool SfxRangeItem::operator==( const SfxPoolItem& rItem ) const DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal type" ); SfxRangeItem* pT = (SfxRangeItem*)&rItem; if( nFrom==pT->nFrom && nTo==pT->nTo ) - return 1; - return 0; + return true; + return false; } // ----------------------------------------------------------------------- @@ -150,14 +150,14 @@ bool SfxUShortRangesItem::operator==( const SfxPoolItem &rItem ) const { const SfxUShortRangesItem &rOther = (const SfxUShortRangesItem&) rItem; if ( !_pRanges && !rOther._pRanges ) - return sal_True; + return true; if ( _pRanges || rOther._pRanges ) - return sal_False; + return false; sal_uInt16 n; for ( n = 0; _pRanges[n] && rOther._pRanges[n]; ++n ) if ( *_pRanges != rOther._pRanges[n] ) - return 0; + return false; return !_pRanges[n] && !rOther._pRanges[n]; } diff --git a/svl/source/items/srchitem.cxx b/svl/source/items/srchitem.cxx index 8ab36d37ceb1..5e4ee561b2ab 100644 --- a/svl/source/items/srchitem.cxx +++ b/svl/source/items/srchitem.cxx @@ -113,14 +113,14 @@ SvxSearchItem::SvxSearchItem( const sal_uInt16 nId ) : nCommand ( 0 ), nCellType ( SVX_SEARCHIN_FORMULA ), nAppFlag ( SVX_SEARCHAPP_WRITER ), - bRowDirection ( sal_True ), - bAllTables ( sal_False ), - bSearchFiltered ( sal_False ), - bNotes ( sal_False), - bBackward ( sal_False ), - bPattern ( sal_False ), - bContent ( sal_False ), - bAsianOptions ( sal_False ) + bRowDirection ( true ), + bAllTables ( false ), + bSearchFiltered ( false ), + bNotes ( false), + bBackward ( false ), + bPattern ( false ), + bContent ( false ), + bAsianOptions ( false ) { EnableNotification( lcl_GetNotifyNames() ); diff --git a/svl/source/items/style.cxx b/svl/source/items/style.cxx index 55bca3f0a65d..f8e15d2324f1 100644 --- a/svl/source/items/style.cxx +++ b/svl/source/items/style.cxx @@ -96,8 +96,8 @@ SfxStyleSheetBase::SfxStyleSheetBase( const OUString& rName, SfxStyleSheetBasePo , pSet( NULL ) , nMask(mask) , nHelpId( 0 ) - , bMySet( sal_False ) - , bHidden( sal_False ) + , bMySet( false ) + , bHidden( false ) { #ifdef DBG_UTIL aDbgStyleSheetReferences.mnStyles++; @@ -161,7 +161,7 @@ bool SfxStyleSheetBase::SetName( const OUString& rName ) OUString aOldName = aName; SfxStyleSheetBase *pOther = pPool->Find( rName, nFamily ) ; if ( pOther && pOther != this ) - return sal_False; + return false; SfxStyleFamily eTmpFam = pPool->GetSearchFamily(); sal_uInt16 nTmpMask = pPool->GetSearchMask(); @@ -169,7 +169,7 @@ bool SfxStyleSheetBase::SetName( const OUString& rName ) pPool->SetSearchMask(nFamily); if ( !aName.isEmpty() ) - pPool->ChangeParent( aName, rName, sal_False ); + pPool->ChangeParent( aName, rName, false ); if ( aFollow == aName ) aFollow = rName; @@ -269,7 +269,7 @@ SfxItemSet& SfxStyleSheetBase::GetItemSet() if( !pSet ) { pSet = new SfxItemSet( pPool->GetPool() ); - bMySet = sal_True; + bMySet = true; } return *pSet; } @@ -385,11 +385,11 @@ SfxStyleSheetIterator::SfxStyleSheetIterator(SfxStyleSheetBasePool *pBase, { pBasePool=pBase; nSearchFamily=eFam; - bSearchUsed=sal_False; + bSearchUsed=false; if( (( n & SFXSTYLEBIT_ALL_VISIBLE ) != SFXSTYLEBIT_ALL_VISIBLE ) && ((n & SFXSTYLEBIT_USED) == SFXSTYLEBIT_USED)) { - bSearchUsed = sal_True; + bSearchUsed = true; n &= ~SFXSTYLEBIT_USED; } nMask=n; diff --git a/svl/source/passwordcontainer/passwordcontainer.cxx b/svl/source/passwordcontainer/passwordcontainer.cxx index 215758b50a03..5a0398233d59 100644 --- a/svl/source/passwordcontainer/passwordcontainer.cxx +++ b/svl/source/passwordcontainer/passwordcontainer.cxx @@ -273,7 +273,7 @@ bool StorageItem::useStorage() if( aPropertyValues.getLength() != aNodeNames.getLength() ) { OSL_ENSURE( aPropertyValues.getLength() == aNodeNames.getLength(), "Problems during reading\n" ); - return sal_False; + return false; } bool aResult = false; @@ -681,7 +681,7 @@ void PasswordContainer::PrivateAdd( const OUString& Url, const OUString& UserNam if( aIter != m_aContainer.end() ) { - UpdateVector( aIter->first, aIter->second, aRecord, sal_True ); + UpdateVector( aIter->first, aIter->second, aRecord, true ); return; } } @@ -1256,7 +1256,7 @@ void SAL_CALL PasswordContainer::removeMasterPassword() // store the empty string to flag the default master password m_aMasterPasswd = aPass; - m_pStorageFile->setEncodedMP( OUString(), sal_True ); + m_pStorageFile->setEncodedMP( OUString(), true ); // store all the entries with the new password for ( int nURLInd = 0; nURLInd < aPersistent.getLength(); nURLInd++ ) @@ -1352,7 +1352,7 @@ void PasswordContainer::Notify() PassMap::iterator aSearchIter = m_aContainer.find( aIter->first ); if( aSearchIter != m_aContainer.end() ) for( list< NamePassRecord >::iterator aNPIter = aIter->second.begin(); aNPIter != aIter->second.end(); ++aNPIter ) - UpdateVector( aSearchIter->first, aSearchIter->second, *aNPIter, sal_False ); + UpdateVector( aSearchIter->first, aSearchIter->second, *aNPIter, false ); else m_aContainer.insert( PairUrlRecord( aIter->first, aIter->second ) ); } diff --git a/svl/source/undo/undo.cxx b/svl/source/undo/undo.cxx index 867f72d311bf..0f695ec7f5d3 100644 --- a/svl/source/undo/undo.cxx +++ b/svl/source/undo/undo.cxx @@ -718,13 +718,13 @@ bool SfxUndoManager::ImplUndo( SfxUndoContext* i_contextOrNull ) if ( ImplIsInListAction_Lock() ) { OSL_ENSURE( false, "SfxUndoManager::Undo: not possible when within a list action!" ); - return sal_False; + return false; } if ( m_pData->pActUndoArray->nCurUndoAction == 0 ) { OSL_ENSURE( false, "SfxUndoManager::Undo: undo stack is empty!" ); - return sal_False; + return false; } SfxUndoAction* pAction = m_pData->pActUndoArray->aUndoActions[ --m_pData->pActUndoArray->nCurUndoAction ].pAction; @@ -763,7 +763,7 @@ bool SfxUndoManager::ImplUndo( SfxUndoContext* i_contextOrNull ) aGuard.scheduleNotification( &SfxUndoListener::actionUndone, sActionComment ); - return sal_True; + return true; } @@ -830,13 +830,13 @@ bool SfxUndoManager::ImplRedo( SfxUndoContext* i_contextOrNull ) if ( ImplIsInListAction_Lock() ) { OSL_ENSURE( false, "SfxUndoManager::Redo: not possible when within a list action!" ); - return sal_False; + return false; } if ( m_pData->pActUndoArray->nCurUndoAction >= m_pData->pActUndoArray->aUndoActions.size() ) { OSL_ENSURE( false, "SfxUndoManager::Redo: redo stack is empty!" ); - return sal_False; + return false; } SfxUndoAction* pAction = m_pData->pActUndoArray->aUndoActions[ m_pData->pActUndoArray->nCurUndoAction++ ].pAction; @@ -876,7 +876,7 @@ bool SfxUndoManager::ImplRedo( SfxUndoContext* i_contextOrNull ) aGuard.scheduleNotification( &SfxUndoListener::actionRedone, sActionComment ); - return sal_True; + return true; } @@ -904,7 +904,7 @@ bool SfxUndoManager::Repeat( SfxRepeatTarget &rTarget ) aGuard.clear(); if ( pAction->CanRepeat( rTarget ) ) pAction->Repeat( rTarget ); - return sal_True; + return true; } return false; |