diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 19:59:54 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:21 +0100 |
commit | 8bc3751ea3ce1162137df2d0e10502cd24a3cb92 (patch) | |
tree | 6e0a16a99e7e9c20bfdb97510da35df9af5256fa /sw/source/ui/shells/frmsh.cxx | |
parent | 7dca2dd95b21df2b36c6a8e7e9edfb49dbd2acd1 (diff) |
bool improvements
Change-Id: Ibeb658e73b588f90242c95d23149f2ef45a7a815
Diffstat (limited to 'sw/source/ui/shells/frmsh.cxx')
-rw-r--r-- | sw/source/ui/shells/frmsh.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/ui/shells/frmsh.cxx b/sw/source/ui/shells/frmsh.cxx index dedc9969cbcb..3b8deb34fb43 100644 --- a/sw/source/ui/shells/frmsh.cxx +++ b/sw/source/ui/shells/frmsh.cxx @@ -212,7 +212,7 @@ void SwFrameShell::Execute(SfxRequest &rReq) } rSh.SetFlyName(sName); } - aURL.SetURL( rURL, sal_False ); + aURL.SetURL( rURL, false ); aURL.SetTargetFrameName(rTarget); aSet.Put( aURL ); @@ -391,7 +391,7 @@ void SwFrameShell::Execute(SfxRequest &rReq) } else { - bUpdateMgr = sal_False; + bUpdateMgr = false; } } @@ -477,8 +477,8 @@ void SwFrameShell::Execute(SfxRequest &rReq) "FrameDialog", GetView().GetViewFrame(), GetView().GetWindow(), - aSet, sal_False, - sal_False, + aSet, false, + false, sDefPage); OSL_ENSURE(pDlg, "Dialogdiet fail!"); @@ -886,11 +886,11 @@ void SwFrameShell::GetState(SfxItemSet& rSet) if ( ( eProtection & FLYPROTECT_CONTENT ) || ( eProtection & FLYPROTECT_SIZE ) ) { - rSet.Put( SfxBoolItem( SID_ATTR_TRANSFORM_PROTECT_SIZE, sal_True ) ); + rSet.Put( SfxBoolItem( SID_ATTR_TRANSFORM_PROTECT_SIZE, true ) ); } else { - rSet.Put( SfxBoolItem( SID_ATTR_TRANSFORM_PROTECT_SIZE, sal_False ) ); + rSet.Put( SfxBoolItem( SID_ATTR_TRANSFORM_PROTECT_SIZE, false ) ); } } break; |