mirror of
https://github.com/edubart/otclient.git
synced 2025-11-07 13:56:22 +01:00
remove lambdas
This commit is contained in:
@@ -33,12 +33,10 @@ class Font;
|
||||
class UITextEdit : public UIElement
|
||||
{
|
||||
public:
|
||||
UITextEdit(Font *font = NULL);
|
||||
UITextEdit();
|
||||
|
||||
void onInputEvent(const InputEvent& event);
|
||||
|
||||
void render();
|
||||
|
||||
void clearText();
|
||||
void setText(const std::string& text);
|
||||
const std::string& getText() const { return m_text; }
|
||||
@@ -57,7 +55,6 @@ private:
|
||||
uint m_cursorPos;
|
||||
int m_startRenderPos;
|
||||
std::string m_text;
|
||||
Font *m_font;
|
||||
};
|
||||
|
||||
typedef std::shared_ptr<UITextEdit> UITextEditPtr;
|
||||
|
||||
Reference in New Issue
Block a user