summaryrefslogtreecommitdiff
path: root/include/typelib
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 19:06:16 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-03-01 09:51:32 -0600
commit8792ec7b2129650777b7b4bfacaa7c13d923279b (patch)
treef181e37b61533b460397cc68625fd21f46bb6393 /include/typelib
parentdff29fadfe418421f2af9fd4f1dccc8a9b4cd545 (diff)
Remove visual noise from include
Conflicts: include/framework/preventduplicateinteraction.hxx include/sfx2/sfxbasecontroller.hxx include/sfx2/sfxbasemodel.hxx include/toolkit/awt/vclxtabpagemodel.hxx include/vcl/field.hxx include/vcl/settings.hxx Change-Id: Ibccf9f88c68267a3d7e656012b51eaf644c418c2 Reviewed-on: https://gerrit.libreoffice.org/8272 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/typelib')
-rw-r--r--include/typelib/typedescription.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/typelib/typedescription.hxx b/include/typelib/typedescription.hxx
index 9ac0db9e063e..7f61423242cd 100644
--- a/include/typelib/typedescription.hxx
+++ b/include/typelib/typedescription.hxx
@@ -137,53 +137,53 @@ public:
inline bool SAL_CALL is() const SAL_THROW(())
{ return (_pTypeDescr != 0); }
};
-//__________________________________________________________________________________________________
+
inline TypeDescription::TypeDescription( typelib_TypeDescription * pTypeDescr ) SAL_THROW(())
: _pTypeDescr( pTypeDescr )
{
if (_pTypeDescr)
typelib_typedescription_acquire( _pTypeDescr );
}
-//__________________________________________________________________________________________________
+
inline TypeDescription::TypeDescription( typelib_TypeDescriptionReference * pTypeDescrRef ) SAL_THROW(())
: _pTypeDescr( 0 )
{
if (pTypeDescrRef)
typelib_typedescriptionreference_getDescription( &_pTypeDescr, pTypeDescrRef );
}
-//__________________________________________________________________________________________________
+
inline TypeDescription::TypeDescription( const ::com::sun::star::uno::Type & rType ) SAL_THROW(())
: _pTypeDescr( 0 )
{
if (rType.getTypeLibType())
typelib_typedescriptionreference_getDescription( &_pTypeDescr, rType.getTypeLibType() );
}
-//__________________________________________________________________________________________________
+
inline TypeDescription::TypeDescription( const TypeDescription & rTypeDescr ) SAL_THROW(())
: _pTypeDescr( rTypeDescr._pTypeDescr )
{
if (_pTypeDescr)
typelib_typedescription_acquire( _pTypeDescr );
}
-//__________________________________________________________________________________________________
+
inline TypeDescription::TypeDescription( rtl_uString * pTypeName ) SAL_THROW(())
: _pTypeDescr( 0 )
{
typelib_typedescription_getByName( &_pTypeDescr , pTypeName );
}
-//__________________________________________________________________________________________________
+
inline TypeDescription::TypeDescription( const ::rtl::OUString & rTypeName ) SAL_THROW(())
: _pTypeDescr( 0 )
{
typelib_typedescription_getByName( &_pTypeDescr , rTypeName.pData );
}
-//__________________________________________________________________________________________________
+
inline TypeDescription::~TypeDescription() SAL_THROW(())
{
if (_pTypeDescr)
typelib_typedescription_release( _pTypeDescr );
}
-//__________________________________________________________________________________________________
+
inline TypeDescription & TypeDescription::operator = ( typelib_TypeDescription * pTypeDescr ) SAL_THROW(())
{
if (pTypeDescr)
@@ -193,13 +193,13 @@ inline TypeDescription & TypeDescription::operator = ( typelib_TypeDescription *
_pTypeDescr = pTypeDescr;
return *this;
}
-//__________________________________________________________________________________________________
+
inline bool TypeDescription::equals( const typelib_TypeDescription * pTypeDescr ) const SAL_THROW(())
{
return (_pTypeDescr && pTypeDescr &&
typelib_typedescription_equals( _pTypeDescr, pTypeDescr ));
}
-//__________________________________________________________________________________________________
+
inline void TypeDescription::makeComplete() const SAL_THROW(())
{
if (_pTypeDescr && !_pTypeDescr->bComplete)