mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-31 01:11:12 +02:00
CKeyboardInput: clean up: remove keyword 'virtual'
Is not required, no sub classes
This commit is contained in:
@@ -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);
|
||||||
|
Reference in New Issue
Block a user