diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-03-25 10:51:15 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-03-25 10:54:06 +0900 |
commit | 1e50f7892705c64db0ffec06b651cd280e9a7f8f (patch) | |
tree | 252c74d3619fb966e52fdcaf6a72cbb8595710e8 /sd | |
parent | c7af37db60aab361e8ab01e69c816d249fb558b6 (diff) |
sal_Bool to bool
Change-Id: Ibc63340b3ae431c7cdac78893dbdd1989ebe5ff9
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/view/drviews6.cxx | 2 | ||||
-rw-r--r-- | sd/source/ui/view/drviewsc.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/view/drviews6.cxx b/sd/source/ui/view/drviews6.cxx index 573190b01f2b..8a136d707afa 100644 --- a/sd/source/ui/view/drviews6.cxx +++ b/sd/source/ui/view/drviews6.cxx @@ -583,7 +583,7 @@ void DrawViewShell::FuTemp04(SfxRequest& rReq) mpDrawView->SdrEndTextEdit(); if(GetActiveWindow()) GetActiveWindow()->EnterWait(); - mpDrawView->End3DCreation(sal_True); + mpDrawView->End3DCreation(true); Cancel(); rReq.Ignore(); if(GetActiveWindow()) diff --git a/sd/source/ui/view/drviewsc.cxx b/sd/source/ui/view/drviewsc.cxx index 6694393fa7fa..bcdd2b9847ae 100644 --- a/sd/source/ui/view/drviewsc.cxx +++ b/sd/source/ui/view/drviewsc.cxx @@ -406,7 +406,7 @@ void DrawViewShell::FuTemp03(SfxRequest& rReq) } WaitObject aWait( (Window*)GetActiveWindow() ); - mpDrawView->ConvertMarkedObjTo3D(sal_True); + mpDrawView->ConvertMarkedObjTo3D(true); } } |