mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-24 15:12:23 +01:00
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;
|
||
|
}
|