diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-08-06 17:57:25 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-08-06 19:54:37 (GMT) |
| commit | 622f2246ef31a05eb38e8f2ab3ac9c1bd9264920 (patch) | |
| tree | fb9009f6803f395c9da457039a823a0ffcdfc98a /src/interface/Textbox.h | |
| parent | f75a3c264235d5edf162fd0f7bf6e04d629704f9 (diff) | |
| download | powder-622f2246ef31a05eb38e8f2ab3ac9c1bd9264920.zip powder-622f2246ef31a05eb38e8f2ab3ac9c1bd9264920.tar.gz | |
Fix TPTScript 'set' function
Diffstat (limited to 'src/interface/Textbox.h')
| -rw-r--r-- | src/interface/Textbox.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/interface/Textbox.h b/src/interface/Textbox.h index 2bc959d..a43a7e5 100644 --- a/src/interface/Textbox.h +++ b/src/interface/Textbox.h @@ -24,7 +24,6 @@ public: Textbox(Point position, Point size, std::string textboxText = "", std::string textboxPlaceholder = ""); virtual ~Textbox(); - virtual void SetDisplayText(std::string text); virtual void SetText(std::string text); virtual std::string GetText(); @@ -44,7 +43,7 @@ public: //Determines if the given character is valid given the input type bool CharacterValid(Uint16 character); - virtual void Tick(float dt); + virtual void Tick(float dt); virtual void OnContextMenuAction(int item); virtual void OnMouseClick(int x, int y, unsigned button); virtual void OnMouseUp(int x, int y, unsigned button); |
