From 550300078e453574a20f24fc596521fdce1e00da Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Wed, 19 Sep 2012 11:32:09 +0200 Subject: [PATCH] *CTextbox: add Member setWindowPos() --- src/gui/widget/textbox.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/widget/textbox.h b/src/gui/widget/textbox.h index 6cf9a305c..ab8f919f7 100644 --- a/src/gui/widget/textbox.h +++ b/src/gui/widget/textbox.h @@ -167,6 +167,7 @@ class CTextBox void setTextFont(Font* font_text); void setTextMode(const int text_mode){m_nMode = text_mode;}; void setBackGroundColor(CFBWindow::color_t textBackgroundColor){m_textBackgroundColor = textBackgroundColor;}; + void setWindowPos(const CBox* position){m_cFrame = *position;}; inline bool isPainted(void) {if( frameBuffer == NULL) return (false); else return (true);}; inline CBox getWindowsPos(void) {return(m_cFrame);};