summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-01-18 22:14:57 +0100
committerMiklos Vajna <vmiklos@suse.cz>2013-01-21 09:27:06 +0000
commitac8199288502744e1fdd01b1c62ea25fd7f4f091 (patch)
tree312ea189611c61310814c3a415100b9825f5c8db /unotools
parent6d779eb1c65b0ce73b1a275dc4534387b97bc927 (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 (cherry picked from commit c106167f5f6ec1bff9b2291ff8791ca6d4d411c3) Reviewed-on: https://gerrit.libreoffice.org/1763 Reviewed-by: Miklos Vajna <vmiklos@suse.cz> Tested-by: Miklos Vajna <vmiklos@suse.cz>
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/config/docinfohelper.cxx1
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( ' ', '_' ) );
}
}