diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-19 11:34:59 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-19 13:05:11 +0200 |
commit | ab5c5702ba88da92649e9d8937bbd00dd9afb599 (patch) | |
tree | 214b540afd5c9fa08d41fc532aaaa4eb62558ef4 /sc/source/ui/view/tabvwshe.cxx | |
parent | 753d9ac166e6eee0163a28c2cf364a1fb7d1b37c (diff) |
sal_Bool->bool
Change-Id: I2dad64e3d7ba90a9d2f4779697a02272b9ccad9f
Diffstat (limited to 'sc/source/ui/view/tabvwshe.cxx')
-rw-r--r-- | sc/source/ui/view/tabvwshe.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/view/tabvwshe.cxx b/sc/source/ui/view/tabvwshe.cxx index 5f084986e848..49c9d8a98c0b 100644 --- a/sc/source/ui/view/tabvwshe.cxx +++ b/sc/source/ui/view/tabvwshe.cxx @@ -143,7 +143,7 @@ void ScTabViewShell::InsertURL( const OUString& rName, const OUString& rURL, con SCCOL nPosX = GetViewData()->GetCurX(); SCROW nPosY = GetViewData()->GetCurY(); - InsertBookmark( rName, rURL, nPosX, nPosY, &rTarget, sal_True ); + InsertBookmark( rName, rURL, nPosX, nPosY, &rTarget, true ); } } else @@ -236,7 +236,7 @@ void ScTabViewShell::ExecSearch( SfxRequest& rReq ) const SvxSearchItem* pSearchItem = (const SvxSearchItem*) pItem; ScGlobal::SetSearchItem( *pSearchItem ); - sal_Bool bSuccess = SearchAndReplace( pSearchItem, sal_True, rReq.IsAPI() ); + bool bSuccess = SearchAndReplace( pSearchItem, true, rReq.IsAPI() ); const SfxChildWindow* pChildWindow = SfxViewFrame::Current()->GetChildWindow( SvxSearchDialogWrapper::GetChildWindowId()); if (pChildWindow) |