diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2010-12-10 12:34:54 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2010-12-10 12:34:54 -0500 |
commit | f1519b3d153ec908267cecaa935b9c5e071e3c71 (patch) | |
tree | df6d1fc09bfa97901457fe53d0bbd75722c53947 /sc/source | |
parent | a8ead55f1ce22efc72a31f888eb0582c962bbf71 (diff) |
BOOL to bool
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/core/tool/rangelst.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/tool/rangelst.cxx b/sc/source/core/tool/rangelst.cxx index 13bde0b91..d5028e5a0 100644 --- a/sc/source/core/tool/rangelst.cxx +++ b/sc/source/core/tool/rangelst.cxx @@ -330,7 +330,7 @@ bool ScRangeList::UpdateReference( SCsTAB nDz ) { - bool bChanged = FALSE; + bool bChanged = false; if ( !maRanges.empty() ) { SCCOL nCol1; @@ -356,7 +356,7 @@ bool ScRangeList::UpdateReference( theCol1, theRow1, theTab1, theCol2, theRow2, theTab2 ) != UR_NOTHING ) { - bChanged = TRUE; + bChanged = true; pR->aStart.Set( theCol1, theRow1, theTab1 ); pR->aEnd.Set( theCol2, theRow2, theTab2 ); } |