From 3f569908ac72c20826a45ebed59af9b1e5449207 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Tue, 6 May 2014 07:39:09 +0200 Subject: Remove C11ism Change-Id: I093ef950f7097021dec3b829d4e11e7b20fc9292 --- sfx2/source/toolbox/tbxitem.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sfx2/source/toolbox') diff --git a/sfx2/source/toolbox/tbxitem.cxx b/sfx2/source/toolbox/tbxitem.cxx index bb1be33546a4..2b4efb0a5f3d 100644 --- a/sfx2/source/toolbox/tbxitem.cxx +++ b/sfx2/source/toolbox/tbxitem.cxx @@ -565,14 +565,14 @@ throw ( ::com::sun::star::uno::RuntimeException, std::exception ) rEvent.State >>= sTemp ; pItem = new SfxStringItem( nSlotId, sTemp ); } - else if ( pType == cppu::UnoType<::com::sun::star::frame::status::ItemStatus>::get() ) + else if ( pType == cppu::UnoType< ::com::sun::star::frame::status::ItemStatus>::get() ) { ItemStatus aItemStatus; rEvent.State >>= aItemStatus; eState = aItemStatus.State; pItem = new SfxVoidItem( nSlotId ); } - else if ( pType == cppu::UnoType<::com::sun::star::frame::status::Visibility>::get() ) + else if ( pType == cppu::UnoType< ::com::sun::star::frame::status::Visibility>::get() ) { Visibility aVisibilityStatus; rEvent.State >>= aVisibilityStatus; @@ -1111,14 +1111,14 @@ throw ( ::com::sun::star::uno::RuntimeException, std::exception ) rEvent.State >>= sTemp ; pItem = new SfxStringItem( nSlotId, sTemp ); } - else if ( pType == cppu::UnoType<::com::sun::star::frame::status::ItemStatus>::get() ) + else if ( pType == cppu::UnoType< ::com::sun::star::frame::status::ItemStatus>::get() ) { ItemStatus aItemStatus; rEvent.State >>= aItemStatus; eState = aItemStatus.State; pItem = new SfxVoidItem( nSlotId ); } - else if ( pType == cppu::UnoType<::com::sun::star::frame::status::Visibility>::get() ) + else if ( pType == cppu::UnoType< ::com::sun::star::frame::status::Visibility>::get() ) { Visibility aVisibilityStatus; rEvent.State >>= aVisibilityStatus; -- cgit