summaryrefslogtreecommitdiffstats
path: root/ColumnsListBox.h
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2006-05-30 13:47:28 +0000
committerHisham Muhammad <hisham@gobolinux.org>2006-05-30 13:47:28 +0000
commitc2cdcd0c1d2950291243b3a8645b5f061a0cdb2a (patch)
tree390297160c9caa342217d481406c68343785b5f9 /ColumnsListBox.h
parenta853faaa2d2d0321da0ff6f51be656fc40cf8663 (diff)
Rename ListBox to Panel, matching dit.
Diffstat (limited to 'ColumnsListBox.h')
-rw-r--r--ColumnsListBox.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/ColumnsListBox.h b/ColumnsListBox.h
index 7f02ff96..92d448d4 100644
--- a/ColumnsListBox.h
+++ b/ColumnsListBox.h
@@ -1,10 +1,10 @@
/* Do not edit this file. It was automatically genarated. */
-#ifndef HEADER_ColumnsListBox
-#define HEADER_ColumnsListBox
+#ifndef HEADER_ColumnsPanel
+#define HEADER_ColumnsPanel
-#include "ListBox.h"
+#include "Panel.h"
#include "Settings.h"
#include "ScreenManager.h"
@@ -12,21 +12,21 @@
#include <assert.h>
-typedef struct ColumnsListBox_ {
- ListBox super;
+typedef struct ColumnsPanel_ {
+ Panel super;
Settings* settings;
Vector* columns;
ScreenManager* scr;
-} ColumnsListBox;
+} ColumnsPanel;
-ColumnsListBox* ColumnsListBox_new(Settings* settings, ScreenManager* scr);
+ColumnsPanel* ColumnsPanel_new(Settings* settings, ScreenManager* scr);
-void ColumnsListBox_delete(Object* object);
+void ColumnsPanel_delete(Object* object);
-void ColumnsListBox_update(ListBox* super);
+void ColumnsPanel_update(Panel* super);
-HandlerResult ColumnsListBox_eventHandler(ListBox* super, int ch);
+HandlerResult ColumnsPanel_eventHandler(Panel* super, int ch);
#endif