diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-01 15:24:36 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2006-08-01 15:24:36 +0000 |
commit | d707cd1cfd53a2d3ed6ef4cf28d1b34721bfc368 (patch) | |
tree | 6906ce58d34dcc43769ee4b540c69646143a764d /unodevtools | |
parent | ff3e9637f98744ac44b6a1805f5bfc2ab95ae31e (diff) |
INTEGRATION: CWS jsc12 (1.4.10); FILE MERGED
2006/07/31 14:53:23 jsc 1.4.10.1: #i67879# simplify calc add-in skeleton
Diffstat (limited to 'unodevtools')
-rw-r--r-- | unodevtools/source/skeletonmaker/skeletoncommon.hxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/unodevtools/source/skeletonmaker/skeletoncommon.hxx b/unodevtools/source/skeletonmaker/skeletoncommon.hxx index bc495255..9881f138 100644 --- a/unodevtools/source/skeletonmaker/skeletoncommon.hxx +++ b/unodevtools/source/skeletonmaker/skeletoncommon.hxx @@ -4,9 +4,9 @@ * * $RCSfile: skeletoncommon.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: vg $ $Date: 2006-03-15 09:20:08 $ + * last change: $Author: ihi $ $Date: 2006-08-01 16:24:36 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -57,7 +57,7 @@ namespace skeletonmaker { struct ProgramOptions { ProgramOptions(): java5(true), all(false), dump(false), license(false), shortnames(false), supportpropertysetmixin(false), - language(1), componenttype(1) {} + backwardcompatible(false), language(1), componenttype(1) {} bool java5; bool all; @@ -65,6 +65,7 @@ struct ProgramOptions { bool license; bool shortnames; bool supportpropertysetmixin; + bool backwardcompatible; // language specifier - is extendable // 1 = Java // 2 = C++ |