diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-03-27 09:02:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-03-27 11:30:37 +0100 |
commit | b07a990e51f9bef637cfdcb31b904c223d7ce738 (patch) | |
tree | 8d326b1ad8ae85349e3b55fed5daa00a14abaaf1 /shell/inc/contentreader.hxx | |
parent | 89a95f5fa5a2e10d2c67d33270fa31404df33fd5 (diff) |
loplugin:typedefparam (clang-cl)
Change-Id: I07604028845c49cc084927e21db7f21c5d053bab
Reviewed-on: https://gerrit.libreoffice.org/69796
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'shell/inc/contentreader.hxx')
-rw-r--r-- | shell/inc/contentreader.hxx | 10 |
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. |