Kaydet (Commit) b53b5081 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

framework: sal_Bool -> bool

Change-Id: Ie56d3fe674af048d7aea32f141c5825e4c2aa98b
üst 99690d31
......@@ -163,7 +163,7 @@ class FWE_DLLPUBLIC OWriteToolBoxDocumentHandler
protected:
virtual void WriteToolBoxItem( const OUString& aCommandURL, const OUString& aLabel, const OUString& aHelpURL, const OUString& aTooltip, sal_Int16 nStyle,
sal_Int16 nWidth, sal_Bool bVisible ) throw
sal_Int16 nWidth, bool bVisible ) throw
( ::com::sun::star::xml::sax::SAXException,
::com::sun::star::uno::RuntimeException );
......
......@@ -762,7 +762,7 @@ void OWriteToolBoxDocumentHandler::WriteToolBoxItem(
const OUString& rTooltip,
sal_Int16 nStyle,
sal_Int16 nWidth,
sal_Bool bVisible )
bool bVisible )
throw ( SAXException, RuntimeException )
{
::comphelper::AttributeList* pList = new ::comphelper::AttributeList;
......@@ -784,7 +784,7 @@ throw ( SAXException, RuntimeException )
rLabel );
}
if ( bVisible == sal_False )
if ( !bVisible )
{
pList->AddAttribute( m_aXMLToolbarNS + OUString( ATTRIBUTE_VISIBLE ),
m_aAttributeType,
......
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