diff --git a/src/FbTk/TextButton.cc b/src/FbTk/TextButton.cc index a177f258..98cd4cef 100644 --- a/src/FbTk/TextButton.cc +++ b/src/FbTk/TextButton.cc @@ -42,22 +42,6 @@ TextButton::TextButton(const FbTk::FbWindow &parent, setRenderer(*this); } -void TextButton::resize(unsigned int width, unsigned int height) { - if (this->width() == width && height == this->height()) - return; - - Button::resize(width, height); -} - -void TextButton::moveResize(int x, int y, - unsigned int width, unsigned int height) { - if (this->width() == width && height == this->height() && - x == this->x() && y == this->y()) - return; - - Button::moveResize(x, y, width, height); -} - void TextButton::setJustify(FbTk::Justify just) { m_justify = just; } diff --git a/src/FbTk/TextButton.hh b/src/FbTk/TextButton.hh index eb0beca4..fe92cc32 100644 --- a/src/FbTk/TextButton.hh +++ b/src/FbTk/TextButton.hh @@ -43,10 +43,6 @@ public: void setTextPaddingLeft(unsigned int leftpadding); void setTextPaddingRight(unsigned int rightpadding); - void resize(unsigned int width, unsigned int height); - void moveResize(int x, int y, - unsigned int width, unsigned int height); - /// clears window and redraw text void clear(); /// clears area and redraws text