bsnes/hiro/gtk/action/menu-separator.cpp

12 lines
212 B
C++

namespace hiro {
auto pMenuSeparator::construct() -> void {
widget = gtk_separator_menu_item_new();
}
auto pMenuSeparator::destruct() -> void {
if(widget) gtk_widget_destroy(widget), widget = nullptr;
}
}