summaryrefslogtreecommitdiff
path: root/autodoc/source/exes/adc_uni/adc_cmd_parse.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'autodoc/source/exes/adc_uni/adc_cmd_parse.cxx')
-rw-r--r--autodoc/source/exes/adc_uni/adc_cmd_parse.cxx14
1 files changed, 9 insertions, 5 deletions
diff --git a/autodoc/source/exes/adc_uni/adc_cmd_parse.cxx b/autodoc/source/exes/adc_uni/adc_cmd_parse.cxx
index 5a80106a83e8..53b8389520c4 100644
--- a/autodoc/source/exes/adc_uni/adc_cmd_parse.cxx
+++ b/autodoc/source/exes/adc_uni/adc_cmd_parse.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: adc_cmd_parse.cxx,v $
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
* This file is part of OpenOffice.org.
*
@@ -82,14 +82,18 @@ S_LanguageInfo::do_Init( opt_iter & it,
"language",
C_opt_LangAll );
- if ( *it == C_arg_Cplusplus )
+ if ( *it == C_arg_Cplusplus ) {
eLanguage = cpp;
- else if ( *it == C_arg_Idl )
+ }
+ else if ( *it == C_arg_Idl ) {
eLanguage = idl;
- else if ( *it == C_arg_Java )
+ }
+ else if ( *it == C_arg_Java ) {
eLanguage = java;
- else
+ }
+ else {
csv_assert(false);
+ }
switch (eLanguage)
{