diff options
author | Juergen Schmidt <jsc@openoffice.org> | 2010-10-01 14:20:45 +0200 |
---|---|---|
committer | Juergen Schmidt <jsc@openoffice.org> | 2010-10-01 14:20:45 +0200 |
commit | f3de0f63df974b9ca01817d46d5fc8c831f72918 (patch) | |
tree | 05e9d1b3a3f32c7780f0b42a6ea1273cb83816cd /registry | |
parent | e9cece0160a22621761d27e09eb47e6095fe91ff (diff) |
jsc340: i14847: clean up cmdline help fo devtools
Diffstat (limited to 'registry')
-rw-r--r-- | registry/tools/checksingleton.cxx | 4 | ||||
-rw-r--r-- | registry/tools/regcompare.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/registry/tools/checksingleton.cxx b/registry/tools/checksingleton.cxx index 4353721ad0b0..75ea3ec7958a 100644 --- a/registry/tools/checksingleton.cxx +++ b/registry/tools/checksingleton.cxx @@ -311,8 +311,8 @@ OString Options::prepareHelp() OString Options::prepareVersion() { - OString version("\nSun Microsystems (R) "); - version += m_program + " Version 1.0\n\n"; + OString version(m_program); + version += " Version 1.0\n\n"; return version; } diff --git a/registry/tools/regcompare.cxx b/registry/tools/regcompare.cxx index 4e95d884de30..d4bbe8c21ee2 100644 --- a/registry/tools/regcompare.cxx +++ b/registry/tools/regcompare.cxx @@ -405,8 +405,8 @@ OString Options::prepareHelp() OString Options::prepareVersion() { - OString version("\nSun Microsystems (R) "); - version += m_program + " Version 1.0\n\n"; + OString version(m_program); + version += " Version 1.0\n\n"; return version; } |