mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
12 lines
206 B
C++
Executable file
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();
|
|
}
|