2011-02-27 09:05:10 +00:00
|
|
|
void pSeparator::constructor() {
|
2011-02-24 09:27:21 +00:00
|
|
|
widget = gtk_separator_menu_item_new();
|
|
|
|
}
|
2011-09-05 03:48:23 +00:00
|
|
|
|
|
|
|
void pSeparator::destructor() {
|
|
|
|
gtk_widget_destroy(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
void pSeparator::orphan() {
|
|
|
|
destructor();
|
|
|
|
constructor();
|
|
|
|
}
|