summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-10 12:09:19 +0200
committerNoel Grandin <noel@peralex.com>2014-02-10 14:44:54 +0200
commitcc66810df37225f9758ca09f2e6280bbe1a81f32 (patch)
tree791b2609a296ba8e5d08234683a1b6128fea2070 /sc
parent5bf2b49ef7f0534138cc2303b8fea688698048c4 (diff)
sal_Bool->bool
Change-Id: I55d0b09ab4e60a4725314691b2d9c170cd60e179
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/dispuno.hxx2
-rw-r--r--sc/source/ui/unoobj/dispuno.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/dispuno.hxx b/sc/inc/dispuno.hxx
index 2676e7dc35c5..eef1481b9c8b 100644
--- a/sc/inc/dispuno.hxx
+++ b/sc/inc/dispuno.hxx
@@ -106,7 +106,7 @@ class ScDispatch : public cppu::WeakImplHelper2<
ScTabViewShell* pViewShell;
XStatusListenerArr_Impl aDataSourceListeners;
ScImportParam aLastImport;
- sal_Bool bListeningToView;
+ bool bListeningToView;
public:
diff --git a/sc/source/ui/unoobj/dispuno.cxx b/sc/source/ui/unoobj/dispuno.cxx
index 787a1d27d686..496a3d581f4e 100644
--- a/sc/source/ui/unoobj/dispuno.cxx
+++ b/sc/source/ui/unoobj/dispuno.cxx
@@ -301,7 +301,7 @@ void SAL_CALL ScDispatch::addStatusListener(
uno::Reference<view::XSelectionSupplier> xSupplier(lcl_GetSelectionSupplier( pViewShell ));
if ( xSupplier.is() )
xSupplier->addSelectionChangeListener(this);
- bListeningToView = sal_True;
+ bListeningToView = true;
}
ScDBData* pDBData = pViewShell->GetDBData(false,SC_DB_OLD);