diff options
author | pixel <pixel> | 2004-12-26 03:29:09 +0000 |
---|---|---|
committer | pixel <pixel> | 2004-12-26 03:29:09 +0000 |
commit | dcd5161f4721d77d37e45f4281e8882bea2cd879 (patch) | |
tree | e682ae7911273484b1aa44d4a8cdc157fc548a58 /Dalos/Console.cc | |
parent | cf676c6c981d98535e25b2cdcb2768d5f2fac67d (diff) |
Putting hexview away, and changed copyrights a bit.
Diffstat (limited to 'Dalos/Console.cc')
-rw-r--r-- | Dalos/Console.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Dalos/Console.cc b/Dalos/Console.cc index f4d914b..ac72b2f 100644 --- a/Dalos/Console.cc +++ b/Dalos/Console.cc @@ -1,6 +1,6 @@ /* * Dalos - * Copyright (C) 2004 Nicolas "Pixel" Noble + * Copyright (C) 2003-2005 Nicolas "Pixel" Noble * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: Console.cc,v 1.3 2004-12-26 02:45:55 pixel Exp $ */ +/* $Id: Console.cc,v 1.4 2004-12-26 03:29:09 pixel Exp $ */ #include <SDL.h> #include <SDL_thread.h> @@ -129,7 +129,7 @@ class ReadLineInternals : public Base { } }; -void console_keyevent::down(SDL_keysym k) { +void console::console_keyevent::down(SDL_keysym k) { if (CurrentConsole->GetVisible()) { SDL_mutexP(key_vect_mutex); switch (k.sym) { @@ -208,7 +208,7 @@ void console_keyevent::down(SDL_keysym k) { } } -void console_keyevent::up(SDL_keysym k) { +void console::console_keyevent::up(SDL_keysym k) { if (old_handler) old_handler->up(k); } |