mirror of https://github.com/bsnes-emu/bsnes.git
10 lines
212 B
C++
10 lines
212 B
C++
|
void pSeparator::constructor() {
|
||
|
qtAction = new QAction(0);
|
||
|
qtAction->setSeparator(true);
|
||
|
}
|
||
|
|
||
|
void pSeparator::destructor() {
|
||
|
if(action.state.menu) action.state.menu->remove(separator);
|
||
|
delete qtAction;
|
||
|
}
|