mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 19:49:56 +00:00
Remove an unneeded virtual
This commit is contained in:
parent
992b770315
commit
f8d360190d
1 changed files with 6 additions and 6 deletions
|
@ -21,16 +21,16 @@ namespace MWGui
|
||||||
// Events
|
// Events
|
||||||
typedef MyGUI::delegates::CMultiDelegate1<WindowBase*> EventHandle_WindowBase;
|
typedef MyGUI::delegates::CMultiDelegate1<WindowBase*> EventHandle_WindowBase;
|
||||||
|
|
||||||
///Unhides the window
|
/// Notify that window has been made visible
|
||||||
virtual void open() {}
|
virtual void open() {}
|
||||||
///Hides the window
|
/// Notify that window has been hidden
|
||||||
virtual void close () {}
|
virtual void close () {}
|
||||||
/// Gracefully exits the window
|
/// Gracefully exits the window
|
||||||
virtual void exit() {}
|
virtual void exit() {}
|
||||||
/// Sets the visibility of the window
|
/// Sets the visibility of the window
|
||||||
virtual void setVisible(bool visible);
|
virtual void setVisible(bool visible);
|
||||||
/// Returns the visibility state of the window
|
/// Returns the visibility state of the window
|
||||||
virtual bool isVisible();
|
bool isVisible();
|
||||||
void center();
|
void center();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue