diff libmlk-ui/mlk/ui/checkbox.h @ 495:2af25db99273

ui: theme -> mlk_theme
author David Demelier <markand@malikania.fr>
date Tue, 28 Feb 2023 13:40:55 +0100
parents ad6e9970a191
children a55d0a29f466
line wrap: on
line diff
--- a/libmlk-ui/mlk/ui/checkbox.h	Tue Feb 28 13:32:01 2023 +0100
+++ b/libmlk-ui/mlk/ui/checkbox.h	Tue Feb 28 13:40:55 2023 +0100
@@ -23,7 +23,7 @@
 
 union mlk_event;
 
-struct theme;
+struct mlk_theme;
 
 struct mlk_checkbox {
 	int x;
@@ -31,13 +31,13 @@
 	unsigned int w;
 	unsigned int h;
 	int checked;
-	const struct theme *theme;
+	const struct mlk_theme *theme;
 };
 
 MLK_CORE_BEGIN_DECLS
 
 void
-mlk_checkbox_draw_default(const struct theme *, const struct mlk_checkbox *);
+mlk_checkbox_draw_default(const struct mlk_theme *, const struct mlk_checkbox *);
 
 int
 mlk_checkbox_handle(struct mlk_checkbox *, const union mlk_event *);