diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-04-24 11:37:48 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-04-24 18:04:50 +0200 |
commit | 5c1561561a859c561fb2321420f1abb7f1cedde3 (patch) | |
tree | 7a96cf8b32bd4c088298df3c4067f0d81f549057 /docmodel | |
parent | 5e6d8efbf3fb456ca370df04b21d2e340d9831ad (diff) |
loplugin:unnecessarygetstr extend to more std::string checking
suggested by mike kaganski
Change-Id: I5f5f254142767aca45a6101abdd84a0163ca6a34
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150936
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'docmodel')
-rw-r--r-- | docmodel/source/theme/ThemeColorJSON.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docmodel/source/theme/ThemeColorJSON.cxx b/docmodel/source/theme/ThemeColorJSON.cxx index 6b2293ca1f64..24b39fc190da 100644 --- a/docmodel/source/theme/ThemeColorJSON.cxx +++ b/docmodel/source/theme/ThemeColorJSON.cxx @@ -19,7 +19,7 @@ namespace model::theme bool convertFromJSON(OString const& rJsonString, model::ThemeColor& rThemeColor) { model::ThemeColor aThemeColor; - std::stringstream aStream(rJsonString.getStr()); + std::stringstream aStream((std::string(rJsonString))); boost::property_tree::ptree aRootTree; try { @@ -95,7 +95,7 @@ OString convertToJSON(model::ThemeColor const& rThemeColor) std::stringstream aStream; boost::property_tree::write_json(aStream, aTree); - return OString(aStream.str().c_str()); + return OString(aStream.str()); } } // end model::theme |