mirror of https://github.com/bsnes-emu/bsnes.git
13 lines
206 B
C++
13 lines
206 B
C++
|
void pSeparator::constructor() {
|
||
|
widget = gtk_separator_menu_item_new();
|
||
|
}
|
||
|
|
||
|
void pSeparator::destructor() {
|
||
|
gtk_widget_destroy(widget);
|
||
|
}
|
||
|
|
||
|
void pSeparator::orphan() {
|
||
|
destructor();
|
||
|
constructor();
|
||
|
}
|