mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
12 lines
256 B
C++
Executable file
12 lines
256 B
C++
Executable file
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;
|
|
}
|