summaryrefslogtreecommitdiff
path: root/codemaker
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-09-04 14:25:39 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-09-04 14:37:54 +0200
commit2618ff47344e423470ab60c5e034d30163b3f29b (patch)
tree275387afcdf370a83ff05473e69741267fa265ce /codemaker
parent71ac97f709441bbcdbeaa2010cb63a782b61e1fa (diff)
UNO interface UIKs are unused for a very long time
...so mark them as @deprecated more thoroughly and always force them to zero. Change-Id: I5db2dab924fc5a4145a0e5dd055b654985ce2ef9
Diffstat (limited to 'codemaker')
-rw-r--r--codemaker/source/cppumaker/cpputype.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/codemaker/source/cppumaker/cpputype.cxx b/codemaker/source/cppumaker/cpputype.cxx
index 9848f5790058..b03e472c52e3 100644
--- a/codemaker/source/cppumaker/cpputype.cxx
+++ b/codemaker/source/cppumaker/cpputype.cxx
@@ -1250,10 +1250,9 @@ void InterfaceType::dumpComprehensiveGetCppuType(FileStream & out) {
out << "\n" << indent() << "typelib_typedescription_newMIInterface(\n";
inc();
out << indent() << "&pTD,\n" << indent()
- << ("sTypeName.pData, 0x00000000, 0x0000, 0x0000, 0x00000000,"
- " 0x00000000,\n") // UIK
- << indent() << entity_->getDirectMandatoryBases().size()
- << ", aSuperTypes,\n" << indent() << count << ",\n" << indent()
+ << "sTypeName.pData, 0, 0, 0, 0, 0,\n" << indent()
+ << entity_->getDirectMandatoryBases().size() << ", aSuperTypes,\n"
+ << indent() << count << ",\n" << indent()
<< (count == 0 ? "0" : "pMembers") << " );\n\n";
dec();
out << indent()