summaryrefslogtreecommitdiffstats
path: root/idl/source/objects
diff options
context:
space:
mode:
authorMaxim Monastirsky <momonasmon@gmail.com>2020-09-09 16:19:05 +0300
committerMaxim Monastirsky <momonasmon@gmail.com>2020-09-10 09:27:47 +0200
commit37ec75564d18f50e656a78bf046e6e86a3e914c1 (patch)
treea45284b76333bee9730fc0b495dbe8eaf3e8a021 /idl/source/objects
parentsdnew.sdi file appears to be unused (diff)
downloadcore-37ec75564d18f50e656a78bf046e6e86a3e914c1.tar.gz
core-37ec75564d18f50e656a78bf046e6e86a3e914c1.zip
Remove the useless Export sdi property
Maybe I'm missing something, but its usage - "if ( !GetExport() && !GetHidden() )" seems like expects it to be true and false at the same time. Anyway, there's no diff in workdir/SdiTarget after this change, so should be safe to remove. Change-Id: I6db508ff40c05dc828ffa91bb41a37c17b697503 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102345 Tested-by: Jenkins Tested-by: Maxim Monastirsky <momonasmon@gmail.com> Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
Diffstat (limited to 'idl/source/objects')
-rw-r--r--idl/source/objects/slot.cxx29
1 files changed, 0 insertions, 29 deletions
diff --git a/idl/source/objects/slot.cxx b/idl/source/objects/slot.cxx
index 1793da697c5c..30b6b1fe0eca 100644
--- a/idl/source/objects/slot.cxx
+++ b/idl/source/objects/slot.cxx
@@ -31,7 +31,6 @@ SvMetaSlot::SvMetaSlot()
, pNextSlot(nullptr)
, nListPos(0)
, aReadOnlyDoc ( true )
- , aExport( true )
{
}
@@ -42,7 +41,6 @@ SvMetaSlot::SvMetaSlot( SvMetaType * pType )
, pNextSlot(nullptr)
, nListPos(0)
, aReadOnlyDoc ( true )
- , aExport( true )
{
}
@@ -52,23 +50,6 @@ bool SvMetaSlot::GetReadOnlyDoc() const
return static_cast<SvMetaSlot *>(GetRef())->GetReadOnlyDoc();
}
-bool SvMetaSlot::GetExport() const
-{
- if( aExport.IsSet() || !GetRef() ) return aExport;
- return static_cast<SvMetaSlot *>(GetRef())->GetExport();
-}
-
-bool SvMetaSlot::GetHidden() const
-{
- // when export is set, but hidden is not the default is used
- if ( aExport.IsSet() )
- return !aExport;
- else if( !GetRef() )
- return false;
- else
- return static_cast<SvMetaSlot *>(GetRef())->GetHidden();
-}
-
bool SvMetaSlot::IsVariable() const
{
SvMetaType * pType = GetType();
@@ -191,7 +172,6 @@ void SvMetaSlot::ReadAttributesSvIdl( SvIdlDataBase & rBase,
aStateMethod.ReadSvIdl( SvHash_StateMethod(), rInStm );
ReadStringSvIdl( SvHash_DisableFlags(), rInStm, aDisableFlags );
aReadOnlyDoc.ReadSvIdl( SvHash_ReadOnlyDoc(), rInStm );
- aExport.ReadSvIdl( SvHash_Export(), rInStm );
aToggle.ReadSvIdl( SvHash_Toggle(), rInStm );
aAutoUpdate.ReadSvIdl( SvHash_AutoUpdate(), rInStm );
aAsynchron.ReadSvIdl( SvHash_Asynchron(), rInStm );
@@ -357,9 +337,6 @@ void SvMetaSlot::WriteSlotStubs( const OString& rShellName,
std::vector<OString> & rList,
SvStream & rOutStm ) const
{
- if ( !GetExport() && !GetHidden() )
- return;
-
OString aMethodName( GetExecMethod() );
if ( !aMethodName.isEmpty() &&
aMethodName != "NoExec" )
@@ -416,9 +393,6 @@ void SvMetaSlot::WriteSlot( const OString& rShellName, sal_uInt16 nCount,
size_t nStart,
SvIdlDataBase & rBase, SvStream & rOutStm )
{
- if ( !GetExport() && !GetHidden() )
- return;
-
rOutStm.WriteCharPtr( "// Slot Nr. " )
.WriteOString( OString::number(nListPos) )
.WriteCharPtr( " : " );
@@ -596,9 +570,6 @@ void SvMetaSlot::WriteSlot( const OString& rShellName, sal_uInt16 nCount,
sal_uInt16 SvMetaSlot::WriteSlotParamArray( SvIdlDataBase & rBase, SvStream & rOutStm ) const
{
- if ( !GetExport() && !GetHidden() )
- return 0;
-
if( IsMethod() )
{
SvMetaType * pType = GetType();