diff options
Diffstat (limited to 'Dalos/Console.h')
-rw-r--r-- | Dalos/Console.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Dalos/Console.h b/Dalos/Console.h index e818aba..16b1029 100644 --- a/Dalos/Console.h +++ b/Dalos/Console.h @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: Console.h,v 1.6 2006-02-02 11:01:12 pixel Exp $ */ +/* $Id: Console.h,v 1.7 2006-10-28 16:50:34 pixel Exp $ */ #ifndef __CONSOLE_H__ #define __CONSOLE_H__ @@ -28,16 +28,16 @@ #include <Buffer.h> #include <engine.h> -#include <widgets.h> +#include <Widgets.h> -class console : public mogltk::widget { +class console : public mogltk::Widget { public: class console_keyevent : public mogltk::engine::keyevent { public: virtual void down(SDL_keysym k); virtual void up(SDL_keysym k); }; - console(mogltk::shape * sh, mogltk::widget * father, int y, int _nlines); + console(mogltk::Shape * sh, mogltk::Widget * father, int y, int _nlines); virtual ~console() throw (GeneralException); void add_line(const String & s); void page_reset(); |