diff options
author | pixel <pixel> | 2006-10-28 16:50:34 +0000 |
---|---|---|
committer | pixel <pixel> | 2006-10-28 16:50:34 +0000 |
commit | 20d9fcbab1deada7260965dd12c1d22e62a8b341 (patch) | |
tree | 632f79751267357086a9b45b86aab54f4423f04d /Dalos/Console.cc | |
parent | 2faeda63ad30d57c7c36fbc17ce5fd8fbdd21a17 (diff) |
Fixing caps in class names.
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 51b35f9..8b66764 100644 --- a/Dalos/Console.cc +++ b/Dalos/Console.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: Console.cc,v 1.8 2006-02-09 16:59:55 pixel Exp $ */ +/* $Id: Console.cc,v 1.9 2006-10-28 16:50:34 pixel Exp $ */ #include <SDL.h> #include <SDL_thread.h> @@ -31,7 +31,7 @@ #include <glshape.h> -#include <font.h> +#include <Font.h> #include <Console.h> @@ -213,8 +213,8 @@ void console::console_keyevent::up(SDL_keysym k) { old_handler->up(k); } -console::console(mogltk::shape * sh, mogltk::widget * father, int y, int _nlines) : - widget(father, 0, y, father->GetW(), _nlines * 13, 0, "console", sh), nlines(_nlines), page(0), protect_add_line(SDL_CreateMutex()) { +console::console(mogltk::Shape * sh, mogltk::Widget * father, int y, int _nlines) : + Widget(father, 0, y, father->GetW(), _nlines * 13, 0, "console", sh), nlines(_nlines), page(0), protect_add_line(SDL_CreateMutex()) { SetVisible(false); } |