add comments

This commit is contained in:
yggverse 2024-09-08 07:38:30 +03:00
parent 05b347256e
commit e1327cc0d5

View file

@ -163,7 +163,7 @@ tab::Label * Tab::get_tabLabel(
if (pageWidget == nullptr) if (pageWidget == nullptr)
{ {
throw _("Tab page not found!"); throw _("Tab page not found!"); // @TODO
} }
auto labelWidget = get_tab_label( auto labelWidget = get_tab_label(
@ -172,7 +172,7 @@ tab::Label * Tab::get_tabLabel(
if (labelWidget == nullptr) if (labelWidget == nullptr)
{ {
throw _("Tab label not found!"); throw _("Tab label not found!"); // @TODO
} }
return (tab::Label *) labelWidget; return (tab::Label *) labelWidget;
@ -187,7 +187,7 @@ tab::Page * Tab::get_tabPage(
if (pageWidget == nullptr) if (pageWidget == nullptr)
{ {
throw _("Tab page not found!"); throw _("Tab page not found!"); // @TODO
} }
return (tab::Page *) pageWidget; return (tab::Page *) pageWidget;