mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-13 07:57:58 +00:00
- fixed MenuItemBase.OnMenuCreated was not declared virtual.
This commit is contained in:
parent
1f109a5deb
commit
245a9ef80c
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ class MenuItemBase : Object native ui version("2.4")
|
||||||
double GetY() { return mYpos; }
|
double GetY() { return mYpos; }
|
||||||
double GetX() { return mXpos; }
|
double GetX() { return mXpos; }
|
||||||
void SetX(double x) { mXpos = x; }
|
void SetX(double x) { mXpos = x; }
|
||||||
void OnMenuCreated() {}
|
virtual void OnMenuCreated() {}
|
||||||
}
|
}
|
||||||
|
|
||||||
// this is only used to parse font color ranges in MENUDEF
|
// this is only used to parse font color ranges in MENUDEF
|
||||||
|
|
Loading…
Reference in a new issue