lsnes/phoenix/gtk/action/separator.cpp
2013-05-03 17:47:34 +03:00

12 lines
206 B
C++
Executable file

void pSeparator::constructor() {
widget = gtk_separator_menu_item_new();
}
void pSeparator::destructor() {
gtk_widget_destroy(widget);
}
void pSeparator::orphan() {
destructor();
constructor();
}