Kaydet (Commit) 1567853a authored tarafından Julien Nabet's avatar Julien Nabet

Remove C11ism

Change-Id: Id5ae0cf42aa8d6ed464eb1149ebdd172a284a75f
üst c2941322
......@@ -135,14 +135,14 @@ throw( RuntimeException, std::exception )
rEvent.State >>= sTemp ;
m_pItem = new SfxStringItem( m_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;
m_eState = aItemStatus.State;
m_pItem = new SfxVoidItem( m_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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment