summaryrefslogtreecommitdiff
path: root/src/gui/widgets/textbox.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-09-28 23:43:54 +0300
committerAndrei Karas <akaras@inbox.ru>2012-09-28 23:43:54 +0300
commitd7f2497abbc2be9ec2f8617232230d5328b1046d (patch)
tree6dc56d8444710121e54b619bb506af951076328b /src/gui/widgets/textbox.h
parent436abf9f8cc33dfff1fe21b8ec5e61854facbd0c (diff)
downloadplus-d7f2497abbc2be9ec2f8617232230d5328b1046d.tar.gz
plus-d7f2497abbc2be9ec2f8617232230d5328b1046d.tar.bz2
plus-d7f2497abbc2be9ec2f8617232230d5328b1046d.tar.xz
plus-d7f2497abbc2be9ec2f8617232230d5328b1046d.zip
Fix textbox font color.
Diffstat (limited to 'src/gui/widgets/textbox.h')
-rw-r--r--src/gui/widgets/textbox.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/gui/widgets/textbox.h b/src/gui/widgets/textbox.h
index 61cf6f665..36362e011 100644
--- a/src/gui/widgets/textbox.h
+++ b/src/gui/widgets/textbox.h
@@ -40,9 +40,6 @@ class TextBox final : public gcn::TextBox
*/
TextBox();
- inline void setTextColor(const gcn::Color *color)
- { mTextColor = color; }
-
/**
* Sets the text after wrapping it to the current width of the widget.
*/
@@ -54,21 +51,10 @@ class TextBox final : public gcn::TextBox
int getMinWidth() const
{ return mMinWidth; }
- /**
- * Draws the text.
- */
- inline void draw(gcn::Graphics *graphics) override
- {
- if (mTextColor)
- mForegroundColor = *mTextColor;
- gcn::TextBox::draw(graphics);
- }
-
void keyPressed(gcn::KeyEvent& keyEvent) override;
private:
int mMinWidth;
- const gcn::Color *mTextColor;
};
#endif