diff -r 712b943195a6 -r 74e562e16399 src/Graphics/Console.cc --- a/src/Graphics/Console.cc Sat Jan 24 01:19:38 2009 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ - -#include "Console.hh" - -namespace graphics -{ - -Console::Console (const CL_Rect& pos, CL_Component* parent) : - CL_Component(pos, parent), - messages(), input(getInputPosition(), this) -{ - // hide by default - show(false); - -} - -CL_Rect Console::getInputPosition (void) { - CL_Rect pos = get_position(); - - return CL_Rect(pos.left, pos.bottom - 30, pos.right, pos.bottom); -} - - -}