summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/uiitems.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-19 10:40:40 +0200
committerNoel Grandin <noel@peralex.com>2014-02-19 13:05:11 +0200
commitdee3ec7b690bc3e9b2d20151a73d1c175d21b25f (patch)
treeff416e1a0597f34eada2375eabb0693f46940eb2 /sc/source/ui/inc/uiitems.hxx
parentb2460d7eefcd390e9d2ebd56dce35b08f6300af6 (diff)
sal_Bool->bool
Change-Id: I802203cf6c3ea1d5e5eb532925f0f3011b6f2cfb
Diffstat (limited to 'sc/source/ui/inc/uiitems.hxx')
-rw-r--r--sc/source/ui/inc/uiitems.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/inc/uiitems.hxx b/sc/source/ui/inc/uiitems.hxx
index 7265742789bc..8e6299917ffc 100644
--- a/sc/source/ui/inc/uiitems.hxx
+++ b/sc/source/ui/inc/uiitems.hxx
@@ -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;
};
//----------------------------------------------------------------------------