From 37a2ed040e0e11ecef115d8955e09845aeff7511 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 5 Mar 2014 16:01:17 +0200 Subject: svx: sal_Bool->bool Change-Id: I7e7bdce5c3ddb7871b9c1fbfe93dc7f7c254f1bb --- sd/source/ui/func/fupage.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sd') 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 ) -- cgit