1
0
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:
Ivan Savenko
2013-09-01 17:34:46 +00:00
parent 7f43150bb9
commit 708b0c6f47
2 changed files with 12 additions and 4 deletions

View File

@ -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;