Browse Source

add exceptions

CPP-GTK4
yggverse 3 months ago
parent
commit
f2e4981fdc
  1. 16
      src/app/browser/main/tab.cpp

16
src/app/browser/main/tab.cpp

@ -33,14 +33,14 @@ Glib::ustring Tab::get_page_title(
PAGE_NUMBER PAGE_NUMBER
); );
if (pageWidget != nullptr) if (pageWidget == nullptr)
{ {
throw _("Tab page not found!");
}
auto tabPage = (tab::Page *) pageWidget; auto tabPage = (tab::Page *) pageWidget;
return tabPage->get_title(); return tabPage->get_title();
}
return ""; // @TODO
}; };
Glib::ustring Tab::get_page_subtitle( Glib::ustring Tab::get_page_subtitle(
@ -50,14 +50,14 @@ Glib::ustring Tab::get_page_subtitle(
PAGE_NUMBER PAGE_NUMBER
); );
if (pageWidget != nullptr) if (pageWidget == nullptr)
{ {
throw _("Tab page not found!");
}
auto tabPage = (tab::Page *) pageWidget; auto tabPage = (tab::Page *) pageWidget;
return tabPage->get_subtitle(); return tabPage->get_subtitle();
}
return ""; // @TODO
}; };
// Actions // Actions

Loading…
Cancel
Save