diff options
author | Arnold Dumas <arnold@dumas.at> | 2016-07-10 19:13:45 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-07-11 07:28:31 +0000 |
commit | c0ca75f1af9a94dccfd1011eac8821bb1a316d6b (patch) | |
tree | df891d090160a9230ae2e6a16ee7062cfef07041 /codemaker/source/cppumaker | |
parent | 9b0995439e02981c47f6234b33e6e8988fadf315 (diff) |
tdf#100726: Improve readability of OUString concatenations
Change-Id: I31877a43e6fe3e9d6b36278673d40f3b14325972
Reviewed-on: https://gerrit.libreoffice.org/27092
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'codemaker/source/cppumaker')
-rw-r--r-- | codemaker/source/cppumaker/cppuoptions.cxx | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/codemaker/source/cppumaker/cppuoptions.cxx b/codemaker/source/cppumaker/cppuoptions.cxx index 01e5f8c033e4..209c0f28e320 100644 --- a/codemaker/source/cppumaker/cppuoptions.cxx +++ b/codemaker/source/cppumaker/cppuoptions.cxx @@ -302,24 +302,24 @@ bool CppuOptions::initOptions(int ac, char* av[], bool bCmdFile) OString CppuOptions::prepareHelp() { OString help("\nusing: "); - help += m_program + " [-options] file_1 ... file_n\nOptions:\n"; - help += " -O<path> = path describes the root directory for the generated output.\n"; - help += " The output directory tree is generated under this directory.\n"; - help += " -T<name> = name specifies a type or a list of types. The output for this\n"; - help += " [t1;...] type is generated. If no '-T' option is specified,\n"; - help += " then output for all types is generated.\n"; - help += " Example: 'com.sun.star.uno.XInterface' is a valid type.\n"; - help += " -L = UNO type functions are generated lightweight, that means only\n"; - help += " the name and typeclass are given and everything else is retrieved\n"; - help += " from the type library dynamically. The default is that UNO type\n"; - help += " functions provides enough type information for bootstrapping C++.\n"; - help += " '-L' should be the default for external components.\n"; - help += " -C = UNO type functions are generated comprehensive that means all\n"; - help += " necessary information is available for bridging the type in UNO.\n"; - help += " -nD = no dependent types are generated.\n"; - help += " -G = generate only target files which does not exists.\n"; - help += " -Gc = generate only target files which content will be changed.\n"; - help += " -X<file> = extra types which will not be taken into account for generation.\n\n"; + help += m_program + " [-options] file_1 ... file_n\nOptions:\n" + " -O<path> = path describes the root directory for the generated output.\n" + " The output directory tree is generated under this directory.\n" + " -T<name> = name specifies a type or a list of types. The output for this\n" + " [t1;...] type is generated. If no '-T' option is specified,\n" + " then output for all types is generated.\n" + " Example: 'com.sun.star.uno.XInterface' is a valid type.\n" + " -L = UNO type functions are generated lightweight, that means only\n" + " the name and typeclass are given and everything else is retrieved\n" + " from the type library dynamically. The default is that UNO type\n" + " functions provides enough type information for bootstrapping C++.\n" + " '-L' should be the default for external components.\n" + " -C = UNO type functions are generated comprehensive that means all\n" + " necessary information is available for bridging the type in UNO.\n" + " -nD = no dependent types are generated.\n" + " -G = generate only target files which does not exists.\n" + " -Gc = generate only target files which content will be changed.\n" + " -X<file> = extra types which will not be taken into account for generation.\n\n"; help += prepareVersion(); return help; |