aboutsummaryrefslogtreecommitdiff
path: root/mod/page.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-05-01 18:08:26 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-05-01 18:08:26 +0300
commit96511bdc00c2e4c17517b0cc3fce50a08683b2a4 (patch)
tree8625f9160100afb205f2dd31a39a9be1a40c4133 /mod/page.cxx
parente326eacee55d5bff5fd18aefece07cd7f7daacee (diff)
Adapt to renaming bpkg::url class to bpkg::manifest_url
Diffstat (limited to 'mod/page.cxx')
-rw-r--r--mod/page.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/mod/page.cxx b/mod/page.cxx
index c7dc403..1e317f0 100644
--- a/mod/page.cxx
+++ b/mod/page.cxx
@@ -14,8 +14,6 @@
#include <libstudxml/serializer.hxx>
-#include <libbutl/url.mxx>
-
#include <web/xhtml/fragment.hxx>
#include <web/xhtml/serialization.hxx>
@@ -576,7 +574,7 @@ namespace brep
if (icasecmp (url_.scheme, "https") == 0 ||
icasecmp (url_.scheme, "http") == 0)
{
- butl::url u (url_);
+ url u (url_);
u.scheme.clear ();
s << A(HREF=url_) << u << ~A;