diff options
author | Peter Burow <pb@openoffice.org> | 2000-12-20 04:51:14 +0000 |
---|---|---|
committer | Peter Burow <pb@openoffice.org> | 2000-12-20 04:51:14 +0000 |
commit | 46eeb143a1ddd31dc889decc39b860f1ebf0114c (patch) | |
tree | 1b200daeea909b2a90fcb1eb49a35fcb4de6dd36 /sfx2 | |
parent | da2de24974665baf5b66b8cfa19b276613f3dbd3 (diff) |
fix: #82284# 'Language' instead of 'Locale' is the correct parameter name
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/appl/sfxhelp.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/appl/sfxhelp.cxx b/sfx2/source/appl/sfxhelp.cxx index 93fae595bf4d..a28c0b538153 100644 --- a/sfx2/source/appl/sfxhelp.cxx +++ b/sfx2/source/appl/sfxhelp.cxx @@ -2,9 +2,9 @@ * * $RCSfile: sfxhelp.cxx,v $ * - * $Revision: 1.17 $ + * $Revision: 1.18 $ * - * last change: $Author: pb $ $Date: 2000-12-19 12:10:02 $ + * last change: $Author: pb $ $Date: 2000-12-20 05:51:14 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -122,7 +122,7 @@ void AppendConfigToken_Impl( String& rURL, sal_Bool bQuestionMark ) rURL += '?'; else rURL += '&'; - rURL += DEFINE_CONST_UNICODE("Locale="); + rURL += DEFINE_CONST_UNICODE("Language="); rURL += aHelpOpt.GetLocale(); rURL += DEFINE_CONST_UNICODE("&System="); rURL += aHelpOpt.GetSystem(); |