diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-08-02 14:56:00 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-08-02 14:56:00 +0000 |
commit | 0072d071c816dc1b8f36206e91e42678348cee8a (patch) | |
tree | 7d9c5721b1c88b0d24f76ba9a305cd2948fab9b5 /xmlhelp/source | |
parent | 9f9662a6b52b1437f1b20438d24e469b63f8c4d5 (diff) |
INTEGRATION: CWS cmcfixes37 (1.6.6); FILE MERGED
2007/07/27 10:22:15 cmc 1.6.6.1: #i79847# escape : like java does
Diffstat (limited to 'xmlhelp/source')
-rw-r--r-- | xmlhelp/source/com/sun/star/help/HelpLinker.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlhelp/source/com/sun/star/help/HelpLinker.cxx b/xmlhelp/source/com/sun/star/help/HelpLinker.cxx index 4b6f63d3eb32..29f72178035c 100644 --- a/xmlhelp/source/com/sun/star/help/HelpLinker.cxx +++ b/xmlhelp/source/com/sun/star/help/HelpLinker.cxx @@ -4,9 +4,9 @@ * * $RCSfile: HelpLinker.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: ihi $ $Date: 2007-07-12 13:24:50 $ + * last change: $Author: hr $ $Date: 2007-08-02 15:56:00 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -4687,7 +4687,7 @@ namespace URLEncoder { static std::string encode(const std::string &rIn) { - const char *good = "!$&'()*+,-.:=@_"; + const char *good = "!$&'()*+,-.=@_"; static const char hex[17] = "0123456789ABCDEF"; std::string result; |