summaryrefslogtreecommitdiff
path: root/Dalos/Console.h
diff options
context:
space:
mode:
authorpixel <pixel>2006-10-28 16:50:34 +0000
committerpixel <pixel>2006-10-28 16:50:34 +0000
commit20d9fcbab1deada7260965dd12c1d22e62a8b341 (patch)
tree632f79751267357086a9b45b86aab54f4423f04d /Dalos/Console.h
parent2faeda63ad30d57c7c36fbc17ce5fd8fbdd21a17 (diff)
Fixing caps in class names.
Diffstat (limited to 'Dalos/Console.h')
-rw-r--r--Dalos/Console.h8
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();