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/Hexview.cc | |
parent | 2faeda63ad30d57c7c36fbc17ce5fd8fbdd21a17 (diff) |
Fixing caps in class names.
Diffstat (limited to 'Dalos/Hexview.cc')
-rw-r--r-- | Dalos/Hexview.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Dalos/Hexview.cc b/Dalos/Hexview.cc index f523e8d..ddcf00b 100644 --- a/Dalos/Hexview.cc +++ b/Dalos/Hexview.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: Hexview.cc,v 1.6 2006-02-02 17:25:28 pixel Exp $ */ +/* $Id: Hexview.cc,v 1.7 2006-10-28 16:50:34 pixel Exp $ */ #include <SDL.h> @@ -80,8 +80,8 @@ void hexview::hexview_keyevent::up(SDL_keysym k) { old_handler->up(k); } -hexview::hexview(mogltk::shape * sh, mogltk::widget * father) : - widget(father, 0, 0, father->GetW(), father->GetH(), 0, "hexview", sh), h(0), width(16), offset(0), offset_loaded(-1), size_loaded(0), data(0), virtual_base(0), shift(0) +hexview::hexview(mogltk::Shape * sh, mogltk::Widget * father) : + Widget(father, 0, 0, father->GetW(), father->GetH(), 0, "hexview", sh), h(0), width(16), offset(0), offset_loaded(-1), size_loaded(0), data(0), virtual_base(0), shift(0) { nlines = GetH() / 13; CurrentHexview = this; } |