Kaydet (Commit) cc66810d authored tarafından Noel Grandin's avatar Noel Grandin

sal_Bool->bool

Change-Id: I55d0b09ab4e60a4725314691b2d9c170cd60e179
üst 5bf2b49e
...@@ -106,7 +106,7 @@ class ScDispatch : public cppu::WeakImplHelper2< ...@@ -106,7 +106,7 @@ class ScDispatch : public cppu::WeakImplHelper2<
ScTabViewShell* pViewShell; ScTabViewShell* pViewShell;
XStatusListenerArr_Impl aDataSourceListeners; XStatusListenerArr_Impl aDataSourceListeners;
ScImportParam aLastImport; ScImportParam aLastImport;
sal_Bool bListeningToView; bool bListeningToView;
public: public:
......
...@@ -301,7 +301,7 @@ void SAL_CALL ScDispatch::addStatusListener( ...@@ -301,7 +301,7 @@ void SAL_CALL ScDispatch::addStatusListener(
uno::Reference<view::XSelectionSupplier> xSupplier(lcl_GetSelectionSupplier( pViewShell )); uno::Reference<view::XSelectionSupplier> xSupplier(lcl_GetSelectionSupplier( pViewShell ));
if ( xSupplier.is() ) if ( xSupplier.is() )
xSupplier->addSelectionChangeListener(this); xSupplier->addSelectionChangeListener(this);
bListeningToView = sal_True; bListeningToView = true;
} }
ScDBData* pDBData = pViewShell->GetDBData(false,SC_DB_OLD); ScDBData* pDBData = pViewShell->GetDBData(false,SC_DB_OLD);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment