mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 00:41:17 +02:00
::getValue(void): remove multiple declared members
Already inherited from CMenuTarget
This commit is contained in:
@@ -529,11 +529,6 @@ void CKeyboardInput::insertChar()
|
||||
changed = true;
|
||||
}
|
||||
|
||||
std::string &CKeyboardInput::getValue(void)
|
||||
{
|
||||
return *valueString;
|
||||
}
|
||||
|
||||
void CKeyboardInput::forceSaveScreen(bool enable)
|
||||
{
|
||||
force_saveScreen = enable;
|
||||
|
@@ -135,7 +135,6 @@ class CKeyboardInput : public CMenuTarget
|
||||
|
||||
void hide();
|
||||
int exec( CMenuTarget* parent, const std::string & actionKey );
|
||||
virtual std::string &getValue(void);
|
||||
|
||||
void forceSaveScreen(bool enable);
|
||||
};
|
||||
|
@@ -35,7 +35,7 @@ class CMenuTarget
|
||||
virtual ~CMenuTarget(){}
|
||||
virtual void hide(){}
|
||||
virtual int exec(CMenuTarget* parent, const std::string & actionKey) = 0;
|
||||
virtual std::string &getValue(void) { return *valueString; }
|
||||
virtual std::string& getValue(void) { return *valueString; }
|
||||
virtual fb_pixel_t getColor(void) { return 0; }
|
||||
};
|
||||
|
||||
|
@@ -368,11 +368,6 @@ void CStringInput::keyPlusPressed()
|
||||
}
|
||||
}
|
||||
|
||||
std::string &CStringInput::getValue(void)
|
||||
{
|
||||
return *valueString;
|
||||
}
|
||||
|
||||
void CStringInput::forceSaveScreen(bool enable)
|
||||
{
|
||||
force_saveScreen = enable;
|
||||
|
@@ -92,7 +92,6 @@ class CStringInput : public CMenuTarget
|
||||
void hide();
|
||||
int exec( CMenuTarget* parent, const std::string & actionKey );
|
||||
void setMinMax(const int min_value, const int max_value);
|
||||
virtual std::string &getValue(void);
|
||||
|
||||
void forceSaveScreen(bool enable);
|
||||
};
|
||||
|
Reference in New Issue
Block a user