diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-09-30 19:41:33 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-09-30 19:41:33 +0100 |
commit | 88ba6693d147240a589f62b146cce2805bf9fd88 (patch) | |
tree | 389eb0923f0879541278e5b60eb736bb627faac8 | |
parent | Move hyphens to the end of groups to avoid it thinking they're ranges (diff) | |
download | gentoobrowse-api-0.12.3.tar.bz2 gentoobrowse-api-0.12.3.tar.xz gentoobrowse-api-0.12.3.zip |
Update to new Slicer interfacegentoobrowse-api-0.12.3
-rw-r--r-- | gentoobrowse-api/service/xsltStreamSerializer.cpp | 2 | ||||
-rw-r--r-- | gentoobrowse-api/service/xsltStreamSerializer.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gentoobrowse-api/service/xsltStreamSerializer.cpp b/gentoobrowse-api/service/xsltStreamSerializer.cpp index 9d453ac..6557c6e 100644 --- a/gentoobrowse-api/service/xsltStreamSerializer.cpp +++ b/gentoobrowse-api/service/xsltStreamSerializer.cpp @@ -41,7 +41,7 @@ namespace Gentoo { } void - XsltStreamSerializer::Serialize(Slicer::ModelPartForRootPtr mp) + XsltStreamSerializer::Serialize(Slicer::ModelPartForRootParam mp) { Slicer::XmlDocumentSerializer::Serialize(mp); auto result = std::unique_ptr<xmlDoc, decltype(&xmlFreeDoc)>( diff --git a/gentoobrowse-api/service/xsltStreamSerializer.h b/gentoobrowse-api/service/xsltStreamSerializer.h index 71f5e3f..9c04cc6 100644 --- a/gentoobrowse-api/service/xsltStreamSerializer.h +++ b/gentoobrowse-api/service/xsltStreamSerializer.h @@ -15,7 +15,7 @@ namespace Gentoo { public: XsltStreamSerializer(IceTray::Mail::EmailPtr, xsltStylesheet *); - void Serialize(Slicer::ModelPartForRootPtr mp) override; + void Serialize(Slicer::ModelPartForRootParam mp) override; protected: static IceTray::Mime::BasicPartPtr getHtml(xmlDoc *); |