mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
10 lines
197 B
C++
Executable file
10 lines
197 B
C++
Executable file
void pItem::setText(const string &text) {
|
|
if(parentWindow) parentWindow->p.updateMenu();
|
|
}
|
|
|
|
void pItem::constructor() {
|
|
}
|
|
|
|
void pItem::destructor() {
|
|
if(parentMenu) parentMenu->remove(item);
|
|
}
|