summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuergen Schmidt <jsc@openoffice.org>2001-03-07 13:02:52 +0000
committerJuergen Schmidt <jsc@openoffice.org>2001-03-07 13:02:52 +0000
commitd4bba8ae8495665277167868d6f3736c71d186f3 (patch)
tree96cca239d02b966892ddec9c88f1582fad87a48f
parentbc80481e65c0668c16d8ab233b733590647ce152 (diff)
new option -nD
-rw-r--r--codemaker/source/javamaker/javatype.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/codemaker/source/javamaker/javatype.cxx b/codemaker/source/javamaker/javatype.cxx
index 8799a561c..fe9b65df3 100644
--- a/codemaker/source/javamaker/javatype.cxx
+++ b/codemaker/source/javamaker/javatype.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: javatype.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: jsc $ $Date: 2001-03-06 08:17:55 $
+ * last change: $Author: jsc $ $Date: 2001-03-07 14:02:52 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1830,8 +1830,11 @@ sal_Bool TypeDefType::dump(JavaOptions* pOptions)
throw( CannotDumpException )
{
OString relBaseType(checkRealBaseType(m_typeName));
+
+ if ( pOptions->isValid("-nD") )
+ return sal_True;
- return produceType(relBaseType, m_typeMgr, m_dependencies, pOptions);
+ return produceType(relBaseType, m_typeMgr, m_dependencies, pOptions);
}