[Libreoffice-commits] .: sc/source
Kohei Yoshida
kohei at kemper.freedesktop.org
Fri Dec 10 09:35:01 PST 2010
sc/source/core/tool/rangelst.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit f1519b3d153ec908267cecaa935b9c5e071e3c71
Author: Kohei Yoshida <kyoshida at novell.com>
Date: Fri Dec 10 12:34:54 2010 -0500
BOOL to bool
diff --git a/sc/source/core/tool/rangelst.cxx b/sc/source/core/tool/rangelst.cxx
index 13bde0b..d5028e5 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 );
}
More information about the Libreoffice-commits
mailing list