diff options
author | pixel <pixel> | 2006-02-02 11:01:12 +0000 |
---|---|---|
committer | pixel <pixel> | 2006-02-02 11:01:12 +0000 |
commit | d05884755c37c131b610c6ce1aef2201d99a10f5 (patch) | |
tree | a3f87af1b0d234748b7a65530e3b7718f78ec294 /Dalos/Console.h | |
parent | 6c6c434f6cc79aa3b9f01d8d5d7b2d538ee68942 (diff) |
Fixing old Dalos, and fixing Linux compilation.
Diffstat (limited to 'Dalos/Console.h')
-rw-r--r-- | Dalos/Console.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Dalos/Console.h b/Dalos/Console.h index df66e09..e818aba 100644 --- a/Dalos/Console.h +++ b/Dalos/Console.h @@ -17,13 +17,13 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: Console.h,v 1.5 2005-11-05 14:36:11 pixel Exp $ */ +/* $Id: Console.h,v 1.6 2006-02-02 11:01:12 pixel Exp $ */ #ifndef __CONSOLE_H__ #define __CONSOLE_H__ #include <SDL.h> -#include <SDL_Thread.h> +#include <SDL_thread.h> #include <Buffer.h> @@ -38,7 +38,7 @@ class console : public mogltk::widget { virtual void up(SDL_keysym k); }; console(mogltk::shape * sh, mogltk::widget * father, int y, int _nlines); - virtual ~console(); + virtual ~console() throw (GeneralException); void add_line(const String & s); void page_reset(); void page_up(); |