mirror of
https://github.com/vcmi/vcmi.git
synced 2025-07-17 01:32:21 +02:00
- fixes #1424 - added missing override and CLabel::visibleText()
This commit is contained in:
@ -348,6 +348,7 @@ class CLabel : public CTextContainer
|
||||
{
|
||||
protected:
|
||||
Point getBorderSize() override;
|
||||
virtual std::string visibleText();
|
||||
|
||||
CPicture *bg;
|
||||
public:
|
||||
@ -449,7 +450,7 @@ public:
|
||||
class CTextInput : public CLabel, public CFocusable
|
||||
{
|
||||
protected:
|
||||
std::string visibleText();
|
||||
std::string visibleText() override;
|
||||
|
||||
public:
|
||||
CFunctionList<void(const std::string &)> cb;
|
||||
|
Reference in New Issue
Block a user