diff options
author | prrvchr <prrvchr@gmail.com> | 2025-03-03 15:39:03 +0100 |
---|---|---|
committer | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2025-03-06 11:59:07 +0100 |
commit | f78397068fa7fd403046605fb37620fba7a76e63 (patch) | |
tree | ca1587ce1e4fad2ef4961ad86a7b5f9d80f79e5e /unodevtools/source/skeletonmaker/skeletoncommon.hxx | |
parent | f78a20ea166123c6891c06b50b6a2394e4fcae06 (diff) |
tdf#165580 uno-skeletonmaker provide passive registration
Change-Id: Ic347a68eb1a13923493d6efe6d911e7e705145a9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/182436
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Diffstat (limited to 'unodevtools/source/skeletonmaker/skeletoncommon.hxx')
-rw-r--r-- | unodevtools/source/skeletonmaker/skeletoncommon.hxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/unodevtools/source/skeletonmaker/skeletoncommon.hxx b/unodevtools/source/skeletonmaker/skeletoncommon.hxx index a6ff05069613..0557be12a1bd 100644 --- a/unodevtools/source/skeletonmaker/skeletoncommon.hxx +++ b/unodevtools/source/skeletonmaker/skeletoncommon.hxx @@ -39,7 +39,8 @@ AttributeInfo; struct ProgramOptions { ProgramOptions(): all(false), dump(false), license(false), shortnames(false), supportpropertysetmixin(false), - backwardcompatible(false), language(1), componenttype(1) {} + backwardcompatible(false), passiveregistration(false), + language(1), componenttype(1) {} bool all; bool dump; @@ -47,6 +48,7 @@ struct ProgramOptions { bool shortnames; bool supportpropertysetmixin; bool backwardcompatible; + bool passiveregistration; // language specifier - is extendable // 1 = Java // 2 = C++ |