Kaydet (Commit) dee3ec7b authored tarafından Noel Grandin's avatar Noel Grandin

sal_Bool->bool

Change-Id: I802203cf6c3ea1d5e5eb532925f0f3011b6f2cfb
üst b2460d7e
......@@ -519,7 +519,7 @@ SfxPoolItem* ScConsolidateItem::Clone( SfxItemPool * ) const
// -----------------------------------------------------------------------
ScPivotItem::ScPivotItem( sal_uInt16 nWhichP, const ScDPSaveData* pData,
const ScRange* pRange, sal_Bool bNew ) :
const ScRange* pRange, bool bNew ) :
SfxPoolItem ( nWhichP )
{
// pSaveData must always exist
......
......@@ -281,7 +281,7 @@ class ScPivotItem : public SfxPoolItem
public:
TYPEINFO();
ScPivotItem( sal_uInt16 nWhich, const ScDPSaveData* pData,
const ScRange* pRange, sal_Bool bNew );
const ScRange* pRange, bool bNew );
ScPivotItem( const ScPivotItem& rItem );
~ScPivotItem();
......@@ -291,12 +291,12 @@ public:
const ScDPSaveData& GetData() const { return *pSaveData; }
const ScRange& GetDestRange() const { return aDestRange; }
sal_Bool IsNewSheet() const { return bNewSheet; }
bool IsNewSheet() const { return bNewSheet; }
private:
ScDPSaveData* pSaveData;
ScRange aDestRange;
sal_Bool bNewSheet;
bool bNewSheet;
};
//----------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment