diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-09-08 13:25:42 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-09-08 13:25:42 +0000 |
commit | 06dec93785475be75b3043481543fa03de0bb0b2 (patch) | |
tree | 09f55e5aed3d5bb28b4d3b898d52f7a0dafc216a /shell | |
parent | 49627fab5ea0432cb534bce606b01a262ad0a7fb (diff) |
INTEGRATION: CWS desktintgr02 (1.3.8); FILE MERGED
2004/07/29 09:14:05 deuce 1.3.8.1: Issue number: 21110
Submitted by: Gorden Lin {gorden.lin@sun.com}
Reviewed by: Tino Rachui {tino.rachui@sun.com}
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/all/xml_parser.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/source/all/xml_parser.cxx b/shell/source/all/xml_parser.cxx index bf168a0ff855..d57603ce1cf3 100644 --- a/shell/source/all/xml_parser.cxx +++ b/shell/source/all/xml_parser.cxx @@ -2,9 +2,9 @@ * * $RCSfile: xml_parser.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: hr $ $Date: 2004-04-07 10:55:09 $ + * last change: $Author: hr $ $Date: 2004-09-08 14:25:42 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -77,15 +77,15 @@ namespace /* private */ namespace decoration e.g. meta:creator -> creator */ const XML_Char COLON = (XML_Char)':'; - const XML_Char* get_local_name(const XML_Char* RawName) + const XML_Char* get_local_name(const XML_Char* rawname) { - const XML_Char* p = RawName; + const XML_Char* p = rawname; // go to the end while (*p) p++; // go back until the first ':' - while (*p != COLON && p > RawName) + while (*p != COLON && p > rawname) p--; // if we are on a colon one step forward @@ -121,7 +121,7 @@ xml_parser::xml_parser(const XML_Char* EncodingName) : } //################################################### -xml_parser::xml_parser(const XML_Char* EncodingName, XML_Char NamespaceSeparator) : +xml_parser::xml_parser(const XML_Char* EncodingName, XML_Char /*NamespaceSeparator*/) : document_handler_(0), xml_parser_(XML_ParserCreate(EncodingName)) { |