X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fwidgetbase.hh;fp=src%2Fwidgetbase.hh;h=29211f4ac59a5deb300cfbd095e26520110b8b36;hb=77ab46d1e35d48e73c201e6de88b26f48bb06425;hp=591f150dd8dc6e88e1b01edfd4bc3704af6abc76;hpb=f1b9e2168d8c1b03b0fcf0b6dd70aa46c513059d;p=chaz%2Fopenbox 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