summaryrefslogtreecommitdiff
path: root/shell/inc/contentreader.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'shell/inc/contentreader.hxx')
-rw-r--r--shell/inc/contentreader.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/shell/inc/contentreader.hxx b/shell/inc/contentreader.hxx
index 55a943b6dd1a..a8af703dd982 100644
--- a/shell/inc/contentreader.hxx
+++ b/shell/inc/contentreader.hxx
@@ -56,9 +56,9 @@ protected: // protected because its only an implementation relevant class
attribute structure.
*/
virtual void start_element(
- const std::wstring& raw_name,
- const std::wstring& local_name,
- const XmlTagAttributes_t& attributes) override;
+ const string_t& raw_name,
+ const string_t& local_name,
+ const xml_tag_attribute_container_t& attributes) override;
/** end_element occurs when a tag is closed
@@ -68,14 +68,14 @@ protected: // protected because its only an implementation relevant class
local name of the tag.
*/
virtual void end_element(
- const std::wstring& raw_name, const std::wstring& local_name) override;
+ const string_t& raw_name, const string_t& local_name) override;
/** characters occurs when receiving characters
@param character
content of the information received.
*/
- virtual void characters(const std::wstring& character) override;
+ virtual void characters(const string_t& character) override;
protected:
/** choose an appropriate tag reader to handle the tag.