From 139834f1067cd4a004afb55c6d9e3a8232ca9588 Mon Sep 17 00:00:00 2001 From: auria Date: Fri, 24 Jun 2011 19:44:16 +0000 Subject: [PATCH] Add new empty methods to cope with updated interface in recent irrlicht git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@9038 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/guiengine/widgets/CGUIEditBox.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/guiengine/widgets/CGUIEditBox.h b/src/guiengine/widgets/CGUIEditBox.h index 459110645..147528e59 100644 --- a/src/guiengine/widgets/CGUIEditBox.h +++ b/src/guiengine/widgets/CGUIEditBox.h @@ -112,6 +112,10 @@ using namespace gui; //! Reads attributes of the element virtual void deserializeAttributes(io::IAttributes* in, io::SAttributeReadWriteOptions* options); + virtual irr::gui::IGUIFont* getOverrideFont() const { return NULL; } + virtual irr::gui::IGUIFont* getActiveFont() const { return NULL; } + virtual void setDrawBackground(bool) { } + protected: //! Breaks the single text line. void breakText();