summaryrefslogtreecommitdiff
path: root/sc/inc/olinetab.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-12 10:24:34 +0200
committerNoel Grandin <noel@peralex.com>2014-02-14 14:15:00 +0200
commit15db27681316e960d4bdaceb3e4c4b4428e54a75 (patch)
tree257a828a4a3cceffbdb6becaf541a642d1341997 /sc/inc/olinetab.hxx
parentf855848af152aa29ff9e24e2ec17ec2ec6ea007d (diff)
sal_Bool->bool
Change-Id: I68c8c9f4d2a76ca4ad469a92714db86f1deae4de
Diffstat (limited to 'sc/inc/olinetab.hxx')
-rw-r--r--sc/inc/olinetab.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/olinetab.hxx b/sc/inc/olinetab.hxx
index 42c565f7f8b0..c7de8c973f66 100644
--- a/sc/inc/olinetab.hxx
+++ b/sc/inc/olinetab.hxx
@@ -156,12 +156,12 @@ public:
const ScOutlineArray* GetRowArray() const { return &aRowOutline; }
ScOutlineArray* GetRowArray() { return &aRowOutline; }
- sal_Bool TestInsertCol( SCSIZE nSize );
+ bool TestInsertCol( SCSIZE nSize );
void InsertCol( SCCOL nStartCol, SCSIZE nSize );
- sal_Bool DeleteCol( SCCOL nStartCol, SCSIZE nSize ); // TRUE: Undo only using original
- sal_Bool TestInsertRow( SCSIZE nSize );
+ bool DeleteCol( SCCOL nStartCol, SCSIZE nSize ); // TRUE: Undo only using original
+ bool TestInsertRow( SCSIZE nSize );
void InsertRow( SCROW nStartRow, SCSIZE nSize );
- sal_Bool DeleteRow( SCROW nStartRow, SCSIZE nSize );
+ bool DeleteRow( SCROW nStartRow, SCSIZE nSize );
};