summaryrefslogtreecommitdiff
path: root/src/widgetbase.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgetbase.hh')
-rw-r--r--src/widgetbase.hh10
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