From bd71519642fa88b7fd294af8aedb2156750bf1dd Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 19 Feb 2014 12:27:07 +0200 Subject: sal_Bool->bool Change-Id: Ia988881bc597ce4c66c889cecc437dd565aefd9e --- sc/source/ui/unoobj/celllistsource.cxx | 2 +- sc/source/ui/unoobj/celllistsource.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sc/source/ui/unoobj/celllistsource.cxx b/sc/source/ui/unoobj/celllistsource.cxx index da3e1a7bd1da..4867a63bdae9 100644 --- a/sc/source/ui/unoobj/celllistsource.cxx +++ b/sc/source/ui/unoobj/celllistsource.cxx @@ -419,7 +419,7 @@ namespace calc // range. In this case, we need to fire a change in our CellRange property, and additionally // notify our XListEntryListeners - m_bInitialized = sal_True; + m_bInitialized = true; } //......................................................................... diff --git a/sc/source/ui/unoobj/celllistsource.hxx b/sc/source/ui/unoobj/celllistsource.hxx index 469eb10f25e2..ffc4e637f37d 100644 --- a/sc/source/ui/unoobj/celllistsource.hxx +++ b/sc/source/ui/unoobj/celllistsource.hxx @@ -68,7 +68,7 @@ namespace calc m_xRange; /// the range of cells we're bound to ::cppu::OInterfaceContainerHelper m_aListEntryListeners; /// our listeners - sal_Bool m_bInitialized; /// has XInitialization::initialize been called? + bool m_bInitialized; /// has XInitialization::initialize been called? public: OCellListSource( -- cgit