commit 5295095706d12ad5306360f812a51d46f023c86e
parent d02e1da3846868b392d6af9451d160c0fc07b2eb
Author: lumidify <nobody@lumidify.org>
Date: Mon, 26 Apr 2021 18:37:45 +0200
Add missing include for stdint.h
Thanks __20h__ for reporting.
Diffstat:
2 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/ltk.h b/src/ltk.h
@@ -19,6 +19,8 @@
/* Requires the following includes: <X11/Xlib.h>, <X11/Xutil.h>, "widget.h" */
+#include <stdint.h>
+
typedef enum {
LTK_EVENT_RESIZE = 1 << 0,
LTK_EVENT_BUTTON = 1 << 1,
diff --git a/src/widget.c b/src/widget.c
@@ -1,3 +1,4 @@
+/* FIXME: Destroy function for widget to destroy pixmap! */
/*
* Copyright (c) 2021 lumidify <nobody@lumidify.org>
*