mirror of https://github.com/bsnes-emu/bsnes.git
13 lines
256 B
C++
13 lines
256 B
C++
|
void pAction::setEnabled(bool enabled) {
|
||
|
if(parentWindow) parentWindow->p.updateMenu();
|
||
|
}
|
||
|
|
||
|
void pAction::setVisible(bool visible) {
|
||
|
if(parentWindow) parentWindow->p.updateMenu();
|
||
|
}
|
||
|
|
||
|
void pAction::constructor() {
|
||
|
parentMenu = 0;
|
||
|
parentWindow = 0;
|
||
|
}
|