diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-11 19:17:13 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-11 19:17:13 +0000 |
| commit | 8f8acc24933830d4f5784616b9b0c5896bde0b93 (patch) | |
| tree | e34d995f6ef854e3ac2b365326ffabf3dad265da /otk/appwidget.hh | |
| parent | 684405eec8553918b62e334bffe29eb4712ec95c (diff) | |
rm prefixes for all elements in the otk namepsace
Diffstat (limited to 'otk/appwidget.hh')
| -rw-r--r-- | otk/appwidget.hh | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/otk/appwidget.hh b/otk/appwidget.hh index d33f2caa..7a5cf74d 100644 --- a/otk/appwidget.hh +++ b/otk/appwidget.hh @@ -1,3 +1,4 @@ +// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- #ifndef __appwidget_hh #define __appwidget_hh @@ -5,14 +6,14 @@ namespace otk { -class OtkApplication; +class Application; -class OtkAppWidget : public OtkWidget { +class AppWidget : public Widget { public: - OtkAppWidget(OtkApplication *app, Direction direction = Horizontal, - Cursor cursor = 0, int bevel_width = 1); - virtual ~OtkAppWidget(); + AppWidget(Application *app, Direction direction = Horizontal, + Cursor cursor = 0, int bevel_width = 1); + virtual ~AppWidget(); virtual void show(void); virtual void hide(void); @@ -21,7 +22,7 @@ public: private: - OtkApplication *_application; + Application *_application; Atom _wm_protocols; Atom _wm_delete; }; |
