summaryrefslogtreecommitdiffstats
path: root/ColorsListBox.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 /ColorsListBox.h
parenta853faaa2d2d0321da0ff6f51be656fc40cf8663 (diff)
Rename ListBox to Panel, matching dit.
Diffstat (limited to 'ColorsListBox.h')
-rw-r--r--ColorsListBox.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/ColorsListBox.h b/ColorsListBox.h
index 25b56534..e8adcb5b 100644
--- a/ColorsListBox.h
+++ b/ColorsListBox.h
@@ -1,10 +1,10 @@
/* Do not edit this file. It was automatically genarated. */
-#ifndef HEADER_ColorsListBox
-#define HEADER_ColorsListBox
+#ifndef HEADER_ColorsPanel
+#define HEADER_ColorsPanel
-#include "ListBox.h"
+#include "Panel.h"
#include "CheckItem.h"
#include "Settings.h"
#include "ScreenManager.h"
@@ -13,20 +13,20 @@
#include <assert.h>
-typedef struct ColorsListBox_ {
- ListBox super;
+typedef struct ColorsPanel_ {
+ Panel super;
Settings* settings;
ScreenManager* scr;
bool check[5];
-} ColorsListBox;
+} ColorsPanel;
-ColorsListBox* ColorsListBox_new(Settings* settings, ScreenManager* scr);
+ColorsPanel* ColorsPanel_new(Settings* settings, ScreenManager* scr);
-void ColorsListBox_delete(Object* object);
+void ColorsPanel_delete(Object* object);
-HandlerResult ColorsListBox_EventHandler(ListBox* super, int ch);
+HandlerResult ColorsPanel_EventHandler(Panel* super, int ch);
#endif