mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
9 lines
212 B
C++
Executable file
9 lines
212 B
C++
Executable file
void pSeparator::constructor() {
|
|
qtAction = new QAction(0);
|
|
qtAction->setSeparator(true);
|
|
}
|
|
|
|
void pSeparator::destructor() {
|
|
if(action.state.menu) action.state.menu->remove(separator);
|
|
delete qtAction;
|
|
}
|