make use of override keyword if available

This commit is contained in:
Andrzej Rybczak
2012-09-04 19:19:37 +02:00
parent 6d87ebbc43
commit f6fb2ed54c
21 changed files with 298 additions and 292 deletions

View File

@@ -79,25 +79,25 @@ struct Scrollpad: public Window
/// Refreshes the window
/// @see Window::Refresh()
///
virtual void refresh();
virtual void refresh() OVERRIDE;
/// Scrolls by given amount of lines
/// @param where indicates where exactly one wants to go
/// @see Window::Scroll()
///
virtual void scroll(Where where);
virtual void scroll(Where where) OVERRIDE;
/// Resizes the window
/// @param new_width new window's width
/// @param new_height new window's height
/// @see Window::Resize()
///
virtual void resize(size_t new_width, size_t new_height);
virtual void resize(size_t new_width, size_t new_height) OVERRIDE;
/// Cleares the content of scrollpad
/// @see Window::clear()
///
virtual void clear();
virtual void clear() OVERRIDE;
/// Sets starting position to the beginning
///