use entire uri pointer

This commit is contained in:
yggverse 2024-09-14 15:05:27 +03:00
parent 5ce90d6e11
commit 4c0cb8c6f0
9 changed files with 28 additions and 26 deletions

View file

@ -4,9 +4,9 @@
using namespace app::browser::main::tab::page::content::text;
Gemini::Gemini(
const Glib::ustring & REQUEST,
const Glib::ustring & GEMTEXT,
Glib::ustring & title
Glib::ustring & title,
GUri * uri
) : Gtk::Viewport( // add scrolled window features to childs
NULL,
NULL
@ -18,9 +18,9 @@ Gemini::Gemini(
set_child(
* Gtk::make_managed<gemini::Reader>(
REQUEST,
GEMTEXT,
title
title,
uri
)
);
}