diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-11 19:42:43 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-11 19:42:43 +0000 |
| commit | 77ab46d1e35d48e73c201e6de88b26f48bb06425 (patch) | |
| tree | 6d2e5052e9d3a77f20a34354af9a266fff5d59a1 /src/widgetbase.hh | |
| parent | f1b9e2168d8c1b03b0fcf0b6dd70aa46c513059d (diff) | |
removing all prefixes completed
Diffstat (limited to 'src/widgetbase.hh')
| -rw-r--r-- | src/widgetbase.hh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/widgetbase.hh b/src/widgetbase.hh index 591f150d..29211f4a 100644 --- a/src/widgetbase.hh +++ b/src/widgetbase.hh @@ -1,12 +1,12 @@ // -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*- -#ifndef __obwidgetbase_hh -#define __obwidgetbase_hh +#ifndef __widgetbase_hh +#define __widgetbase_hh #include "python.hh" namespace ob { -class OBWidget { +class WidgetBase { public: enum WidgetType { Type_Frame, @@ -28,7 +28,7 @@ private: WidgetType _type; public: - OBWidget(WidgetType type) : _type(type) {} + WidgetBase(WidgetType type) : _type(type) {} inline WidgetType type() const { return _type; } @@ -68,4 +68,4 @@ public: } -#endif // __obwidgetbase_hh +#endif // __widgetbase_hh |
