mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-07 12:06:35 +00:00
Add C++11 override markers.
Adds the markers for gui2::twidget::create_walker.
This commit is contained in:
parent
a31f53d5cd
commit
043b71a34a
@ -149,11 +149,11 @@ public:
|
||||
bool disable_click_dismiss() const OVERRIDE;
|
||||
|
||||
/**
|
||||
* Inherited from twidget.
|
||||
* See @ref twidget::create_walker.
|
||||
*
|
||||
* @todo Implement properly.
|
||||
*/
|
||||
virtual iterator::twalker_* create_walker() { return NULL; }
|
||||
virtual iterator::twalker_* create_walker() OVERRIDE { return NULL; }
|
||||
|
||||
/**
|
||||
* Initializes and builds the grid.
|
||||
|
@ -98,8 +98,8 @@ public:
|
||||
*/
|
||||
bool disable_click_dismiss() const OVERRIDE;
|
||||
|
||||
/** Inherited from twidget. */
|
||||
virtual iterator::twalker_* create_walker();
|
||||
/** See @ref twidget::create_walker. */
|
||||
virtual iterator::twalker_* create_walker() OVERRIDE;
|
||||
|
||||
/***** ***** ***** ***** layout functions ***** ***** ***** *****/
|
||||
|
||||
|
@ -893,11 +893,11 @@ public:
|
||||
}
|
||||
|
||||
/**
|
||||
* Inherited from twidget.
|
||||
* See @ref twidget::create_walker.
|
||||
*
|
||||
* @todo Implement properly.
|
||||
*/
|
||||
virtual iterator::twalker_* create_walker() { return NULL; }
|
||||
virtual iterator::twalker_* create_walker() OVERRIDE { return NULL; }
|
||||
|
||||
/***** ***** ***** ***** keyboard functions ***** ***** ***** *****/
|
||||
|
||||
|
@ -273,8 +273,8 @@ public:
|
||||
/** See @ref twidget::disable_click_dismiss. */
|
||||
bool disable_click_dismiss() const OVERRIDE;
|
||||
|
||||
/** Inherited from twidget. */
|
||||
virtual iterator::twalker_* create_walker();
|
||||
/** See @ref twidget::create_walker. */
|
||||
virtual iterator::twalker_* create_walker() OVERRIDE;
|
||||
|
||||
/***** ***** ***** setters / getters for members ***** ****** *****/
|
||||
|
||||
|
@ -186,9 +186,8 @@ public:
|
||||
/** See @ref twidget::disable_click_dismiss. */
|
||||
bool disable_click_dismiss() const OVERRIDE;
|
||||
|
||||
/** Inherited from twidget. */
|
||||
virtual iterator::twalker_* create_walker();
|
||||
|
||||
/** See @ref twidget::create_walker. */
|
||||
virtual iterator::twalker_* create_walker() OVERRIDE;
|
||||
|
||||
/**
|
||||
* Returns a grid in the pane.
|
||||
|
@ -132,9 +132,8 @@ public:
|
||||
/** See @ref twidget::disable_click_dismiss. */
|
||||
bool disable_click_dismiss() const OVERRIDE;
|
||||
|
||||
/** Inherited from twidget. */
|
||||
virtual iterator::twalker_* create_walker();
|
||||
|
||||
/** See @ref twidget::create_walker. */
|
||||
virtual iterator::twalker_* create_walker() OVERRIDE;
|
||||
|
||||
/**
|
||||
* Returns a grid in the pane.
|
||||
|
@ -121,11 +121,11 @@ public:
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Inherited from twidget.
|
||||
* See @ref twidget::create_walker.
|
||||
*
|
||||
* @todo Implement properly.
|
||||
*/
|
||||
virtual iterator::twalker_* create_walker() { return NULL; }
|
||||
virtual iterator::twalker_* create_walker() OVERRIDE { return NULL; }
|
||||
|
||||
/** See @ref twidget::find_at. */
|
||||
virtual twidget* find_at(
|
||||
|
@ -95,8 +95,8 @@ public:
|
||||
/** See @ref twidget::disable_click_dismiss. */
|
||||
bool disable_click_dismiss() const OVERRIDE;
|
||||
|
||||
/** Inherited from twidget. */
|
||||
virtual iterator::twalker_* create_walker();
|
||||
/** See @ref twidget::create_walker. */
|
||||
virtual iterator::twalker_* create_walker() OVERRIDE;
|
||||
|
||||
private:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user