remove destructors overwrite

This commit is contained in:
yggverse 2024-09-05 01:40:56 +03:00
parent 1ec685cabe
commit 207d5079a7
18 changed files with 6 additions and 42 deletions

View File

@ -27,8 +27,6 @@ Subtitle::Subtitle()
hide();
}
Subtitle::~Subtitle() = default;
void Subtitle::set(
const Glib::ustring & TEXT
) {

View File

@ -16,8 +16,6 @@ namespace app::browser::header::main
Subtitle();
~Subtitle();
void set(
const Glib::ustring & TEXT
);

View File

@ -29,8 +29,6 @@ Title::Title()
);
}
Title::~Title() = default;
void Title::set(
const Glib::ustring & TEXT
) {

View File

@ -18,8 +18,6 @@ namespace app::browser::header::main
Title();
~Title();
void set(
const Glib::ustring & TEXT
);

View File

@ -32,6 +32,4 @@ Label::Label(
add_controller(
GtkGestureClick
);
}
Label::~Label() = default;
}

View File

@ -16,8 +16,6 @@ namespace app::browser::main::tab
Label(
const Glib::ustring & TEXT
);
~Label();
};
}

View File

@ -16,6 +16,4 @@ Gemini::Gemini(
set_markup(
gemtext // @TODO
);
}
Gemini::~Gemini() = default;
}

View File

@ -13,8 +13,6 @@ namespace app::browser::main::tab::page::content::text
Gemini(
const Glib::ustring & gemtext
);
~Gemini();
};
}

View File

@ -16,6 +16,4 @@ Plain::Plain(
set_text(
text
);
}
Plain::~Plain() = default;
}

View File

@ -13,8 +13,6 @@ namespace app::browser::main::tab::page::content::text
Plain(
const Glib::ustring & text
);
~Plain();
};
}

View File

@ -15,6 +15,4 @@ Base::Base()
set_tooltip_text(
_("Base")
);
}
Base::~Base() = default;
}

View File

@ -11,8 +11,6 @@ namespace app::browser::main::tab::page::navigation
public:
Base();
~Base();
};
}

View File

@ -15,6 +15,4 @@ Bookmark::Bookmark()
set_tooltip_text(
_("Toggle bookmark")
);
}
Bookmark::~Bookmark() = default;
}

View File

@ -11,8 +11,6 @@ namespace app::browser::main::tab::page::navigation
public:
Bookmark();
~Bookmark();
};
}

View File

@ -29,5 +29,3 @@ Back::Back()
}
);
}
Back::~Back() = default;

View File

@ -11,8 +11,6 @@ namespace app::browser::main::tab::page::navigation::history
public:
Back();
~Back();
};
}

View File

@ -28,6 +28,4 @@ Forward::Forward()
);
}
);
}
Forward::~Forward() = default;
}

View File

@ -11,8 +11,6 @@ namespace app::browser::main::tab::page::navigation::history
public:
Forward();
~Forward();
};
}