commit ef5c197cfcc1e5e0dcd1048142d179e67f02f5cb
parent 0c7308ca2b1075894669bc61ddf7f3a1ac4f9cb4
Author: Michael Rasmussen <mir@datanom.net>
Date: Fri, 10 Sep 2021 09:11:54 +0200
Fix broken include
Signed-off-by: Michael Rasmussen <mir@datanom.net>
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/plugins/notification/gtkhotkey/Makefile.am b/src/plugins/notification/gtkhotkey/Makefile.am
@@ -28,6 +28,7 @@ libcmnpgtkhotkey_la_LIBADD = \
libcmnpgtkhotkey_la_CPPFLAGS = \
-DGTK_HOTKEY_COMPILATION \
+ -I$(top_srcdir)/src/common \
$(GLIB_CFLAGS) \
$(GTK_CFLAGS) \
$(CM_NP_HOTKEY_CFLAGS)
diff --git a/src/plugins/notification/gtkhotkey/gtk-hotkey-key-file-registry.c b/src/plugins/notification/gtkhotkey/gtk-hotkey-key-file-registry.c
@@ -15,7 +15,9 @@
* You should have received a copy of the GNU Lesser General Public License
* along with GtkHotkey. If not, see <http://www.gnu.org/licenses/>.
*/
-
+
+#include "utils.h"
+
#include "gtk-hotkey-key-file-registry.h"
#include "gtk-hotkey-utils.h"