diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-01-18 22:14:57 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-01-18 23:46:34 +0100 |
commit | c106167f5f6ec1bff9b2291ff8791ca6d4d411c3 (patch) | |
tree | 221192f36baaa7df0b4aad3ac457d62de5948916 /unotools | |
parent | e024a8d88dbca3a2d178ad88c069721a92156ddf (diff) |
PRODUCTEXTENSION: fix various obvious strings and such...
... to look pretty; most of these expect PRODUCTEXTENSION to be a word
like "Beta" but nowadays it is ".micro.rc.alphabeta" numbers so there
should be no space before it.
ReplaceStringHookProc adds insult to injury by refusing to
replace %ABOUTBOX variables unless some %PRODUCT is in the string.
Change-Id: Ib676f3837ab0785529a226fc9359e8defacf3459
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/docinfohelper.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/unotools/source/config/docinfohelper.cxx b/unotools/source/config/docinfohelper.cxx index e2b0e83ad09d..91c9569c1b4c 100644 --- a/unotools/source/config/docinfohelper.cxx +++ b/unotools/source/config/docinfohelper.cxx @@ -50,7 +50,6 @@ namespace utl aValue = utl::ConfigManager::getProductExtension(); if ( !aValue.isEmpty() ) { - aResult.append( (sal_Unicode)'_' ); aResult.append( aValue.replace( ' ', '_' ) ); } } |