summaryrefslogtreecommitdiff
path: root/rdbmaker
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-02-07 22:59:52 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-02-07 23:00:14 +0100
commit5ab2409037bf394c7f5c32986214f38d3421164b (patch)
tree55ec00ab340639c170030127ac95ef4fd8236969 /rdbmaker
parent65818fe50b92dac8a85916a5b841bb6ea120bde8 (diff)
Remove dead code
Diffstat (limited to 'rdbmaker')
-rw-r--r--rdbmaker/source/rdbmaker/typeblop.cxx16
1 files changed, 0 insertions, 16 deletions
diff --git a/rdbmaker/source/rdbmaker/typeblop.cxx b/rdbmaker/source/rdbmaker/typeblop.cxx
index 88af2d64adc4..0eb9115e2822 100644
--- a/rdbmaker/source/rdbmaker/typeblop.cxx
+++ b/rdbmaker/source/rdbmaker/typeblop.cxx
@@ -50,7 +50,6 @@ using namespace com::sun::star::reflection;
using namespace com::sun::star::lang;
using namespace com::sun::star::container;
using namespace cppu;
-//using namespace osl;
using namespace rtl;
static Reference< XHierarchicalNameAccess > xNameAccess;
@@ -155,21 +154,6 @@ sal_uInt32 getInheritedMemberCount( Reference< XTypeDescription >& xType )
memberCount += xIFace->getMembers().getLength();
}
-// } else
-// if ( xType->getTypeClass() == TypeClass_Struct || xType->getTypeClass() == TypeClass_Exception )
-// {
-// Reference< XCompoundTypeDescription > xComp(xType, UNO_QUERY);
-//
-// if ( xComp.is() )
-// return membercount;
-//
-// Reference< XTypeDescription > xSuperType = xComp->getBaseType();
-//
-// if ( xSuperType.is() )
-// memberCount = getInheritedMemberCount( xSuperType );
-//
-// memberCount += xComp->getMemberNames().getLength();
-// }
return memberCount;
}