summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-05 16:01:17 +0200
committerNoel Grandin <noel@peralex.com>2014-03-11 08:18:20 +0200
commit37a2ed040e0e11ecef115d8955e09845aeff7511 (patch)
tree6387f7f6d66e0e02f79b1e8bc604ba7832249d4e /sd
parenteeae5cf0432adb83e5e948a217020b776144d783 (diff)
svx: sal_Bool->bool
Change-Id: I7e7bdce5c3ddb7871b9c1fbfe93dc7f7c254f1bb
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/func/fupage.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/func/fupage.cxx b/sd/source/ui/func/fupage.cxx
index 5a91b7428fc7..df99c0f70903 100644
--- a/sd/source/ui/func/fupage.cxx
+++ b/sd/source/ui/func/fupage.cxx
@@ -498,7 +498,7 @@ void FuPage::ApplyItemSet( const SfxItemSet* pArgs )
{
mpDoc->SetPageNumType(((const SvxPageItem*) pPoolItem)->GetNumType());
- eOrientation = (((const SvxPageItem*) pPoolItem)->IsLandscape() == ORIENTATION_LANDSCAPE) ?
+ eOrientation = ((const SvxPageItem*) pPoolItem)->IsLandscape() ?
ORIENTATION_LANDSCAPE : ORIENTATION_PORTRAIT;
if( mpPage->GetOrientation() != eOrientation )