Remove 'virtual' from some items that are not virtual in the real code

This commit is contained in:
Robin Dunn
2019-05-24 13:33:41 -07:00
parent 8d6198c59d
commit 629e52da5e
2 changed files with 3 additions and 3 deletions

View File

@@ -189,7 +189,7 @@ public:
/** /**
Makes sure that idle events are sent again. Makes sure that idle events are sent again.
*/ */
virtual void WakeUpIdle(); void WakeUpIdle();
/** /**
This virtual function is called when the application becomes idle and This virtual function is called when the application becomes idle and

View File

@@ -105,7 +105,7 @@ public:
(e.g. on some systems automatically hidden notifications can't be (e.g. on some systems automatically hidden notifications can't be
hidden manually). hidden manually).
*/ */
virtual bool Close(); bool Close();
/** /**
This parameter can be currently used to specify the icon to show in the This parameter can be currently used to specify the icon to show in the
@@ -167,7 +167,7 @@ public:
@return @false if an error occurred. @return @false if an error occurred.
*/ */
virtual bool Show(int timeout = Timeout_Auto); bool Show(int timeout = Timeout_Auto);
/** /**
If the application already uses a wxTaskBarIcon, it should be connected If the application already uses a wxTaskBarIcon, it should be connected