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
commit98bfefecfaee978a00b87634bd4c4cf8d533a124 (patch)
tree4c5b1541f8bd26f9f36ef902ac407f2e8303d8f3 /rdbmaker
parent5c3430aef23820c6fef9788c181c8738ec44464f (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 cb6326362..767611807 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;
}