summaryrefslogtreecommitdiff
path: root/Dalos/Console.cc
diff options
context:
space:
mode:
Diffstat (limited to 'Dalos/Console.cc')
-rw-r--r--Dalos/Console.cc8
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);
}