summaryrefslogtreecommitdiff
path: root/idl/source/objects/types.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-04 11:21:39 +0200
committerNoel Grandin <noel@peralex.com>2016-02-05 08:01:42 +0200
commit8763140b566e672d0c2afa563a465bac91c1d983 (patch)
tree431f96b10cedd17e16beddcb6715260f7029a36b /idl/source/objects/types.cxx
parent1c3649c2be470d4ac324727a56594c1f6a2b5bf2 (diff)
remove unused SbxName from .SDI files
Change-Id: I1d0bd2477d22c5f71fd61882756e05e2e30dfa6f
Diffstat (limited to 'idl/source/objects/types.cxx')
-rw-r--r--idl/source/objects/types.cxx16
1 files changed, 2 insertions, 14 deletions
diff --git a/idl/source/objects/types.cxx b/idl/source/objects/types.cxx
index ed5275ecc8a1..797bd13a6055 100644
--- a/idl/source/objects/types.cxx
+++ b/idl/source/objects/types.cxx
@@ -208,7 +208,6 @@ SvMetaType::SvMetaType( const OString& rName, char cPC,
}
SvMetaType::SvMetaType( const OString& rName,
- const OString& rSbxName,
char cPc,
const OString& rCName,
const OString& rBasicName,
@@ -216,7 +215,6 @@ SvMetaType::SvMetaType( const OString& rName,
CTOR
{
SetName( rName );
- aSbxName.setString(rSbxName);
cParserChar = cPc;
aCName.setString(rCName);
aBasicName.setString(rBasicName);
@@ -342,14 +340,6 @@ const OString& SvMetaType::GetSvName() const
return static_cast<SvMetaType *>(GetRef())->GetSvName();
}
-const OString& SvMetaType::GetSbxName() const
-{
- if( aSbxName.IsSet() || !GetRef() )
- return aSbxName.getString();
- else
- return static_cast<SvMetaType *>(GetRef())->GetSbxName();
-}
-
const OString& SvMetaType::GetCName() const
{
if( aCName.IsSet() || !GetRef() )
@@ -361,7 +351,6 @@ const OString& SvMetaType::GetCName() const
bool SvMetaType::SetName( const OString& rName, SvIdlDataBase * pBase )
{
aSvName.setString(rName);
- aSbxName.setString(rName);
aCName.setString(rName);
return SvMetaReference::SetName( rName, pBase );
}
@@ -463,7 +452,6 @@ void SvMetaType::ReadAttributesSvIdl( SvIdlDataBase & rBase,
{
SvMetaExtern::ReadAttributesSvIdl( rBase, rInStm );
aSvName.ReadSvIdl( SvHash_SvName(), rInStm );
- aSbxName.ReadSvIdl( SvHash_SbxName(), rInStm );
}
void SvMetaType::ReadContextSvIdl( SvIdlDataBase & rBase,
@@ -609,7 +597,7 @@ OString SvMetaType::GetParserString() const
}
SvMetaTypeString::SvMetaTypeString()
- : SvMetaType( "String", "SbxSTRING", 's', "char *", "String", "$" )
+ : SvMetaType( "String", 's', "char *", "String", "$" )
{
}
@@ -685,7 +673,7 @@ bool SvMetaTypeEnum::ReadSvIdl( SvIdlDataBase & rBase,
}
SvMetaTypevoid::SvMetaTypevoid()
- : SvMetaType( "void", "SbxVOID", 'v', "void", "", "" )
+ : SvMetaType( "void", 'v', "void", "", "" )
{
}