summaryrefslogtreecommitdiffstats
path: root/include/widgets
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-01-04 15:05:39 +0100
committerDave Davenport <qball@gmpclient.org>2017-01-04 15:05:39 +0100
commit85a0e1a57e1fb21d5802c64685cbff3d53114da1 (patch)
tree4f61a8af0d62f89e862a6888028a285ec7b26b17 /include/widgets
parent645fe2489049531b8a2898cfced061b32914a1ab (diff)
Remove class system from new theme format. Fix theme converter.
Diffstat (limited to 'include/widgets')
-rw-r--r--include/widgets/widget-internal.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/widgets/widget-internal.h b/include/widgets/widget-internal.h
index 6279de9e..cdd9d2f9 100644
--- a/include/widgets/widget-internal.h
+++ b/include/widgets/widget-internal.h
@@ -56,19 +56,17 @@ struct _widget
/** Name of widget (used for theming) */
char *name;
- char *class_name;
const char *state;
};
/**
* @param widget The widget to initialize.
* @param name The name of the widget.
- * @param class_name The name of the class of the widget.
*
* Initializes the widget structure.
*
*/
-void widget_init ( widget *widget , const char *name, const char *class_name );
+void widget_init ( widget *widget , const char *name );
/**
* @param widget The widget handle.