CKeyboardInput: clean up: remove keyword 'virtual'

Is not required, no sub classes
This commit is contained in:
2019-03-20 22:48:21 +01:00
parent aeacf03234
commit 819f6afb17

View File

@@ -106,27 +106,27 @@ class CKeyboardInput : public CMenuTarget, public sigc::trackable
void keyDigiPressed(const neutrino_msg_t key); void keyDigiPressed(const neutrino_msg_t key);
virtual void init(); void init();
virtual void paint(); void paint();
virtual int paintFooter(bool show = true); int paintFooter(bool show = true);
virtual void paintChar(int pos, std::string &c); void paintChar(int pos, std::string &c);
virtual void paintChar(int pos); void paintChar(int pos);
virtual void paintKeyboard(); void paintKeyboard();
virtual void paintKey(int row, int column); void paintKey(int row, int column);
virtual void NormalKeyPressed(); void NormalKeyPressed();
virtual void clearString(); void clearString();
virtual void switchCaps(); void switchCaps();
virtual void keyUpPressed(); void keyUpPressed();
virtual void keyDownPressed(); void keyDownPressed();
virtual void keyLeftPressed(); void keyLeftPressed();
virtual void keyRightPressed(); void keyRightPressed();
virtual void insertChar(); void insertChar();
virtual void deleteChar(); void deleteChar();
virtual void keyBackspacePressed(); void keyBackspacePressed();
virtual void switchLayout(); void switchLayout();
virtual void setLayout(); void setLayout();
public: public:
CKeyboardInput(const neutrino_locale_t Name, std::string* Value, int Size = 0, CChangeObserver* Observ = NULL, const char * const Icon = NULL, const neutrino_locale_t Hint_1 = NONEXISTANT_LOCALE, const neutrino_locale_t Hint_2 = NONEXISTANT_LOCALE); CKeyboardInput(const neutrino_locale_t Name, std::string* Value, int Size = 0, CChangeObserver* Observ = NULL, const char * const Icon = NULL, const neutrino_locale_t Hint_1 = NONEXISTANT_LOCALE, const neutrino_locale_t Hint_2 = NONEXISTANT_LOCALE);