blob: 69c19dae5e8df431a27919a7b8ded850b6ff5e4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
src/egg-macros.h | 3 ++-
src/eggfileformatchooser.c | 2 ++
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/src/egg-macros.h b/src/egg-macros.h
index 9a7caad..1a6bce0 100644
--- a/src/egg-macros.h
+++ b/src/egg-macros.h
@@ -9,7 +9,8 @@
#ifndef _EGG_MACROS_H_
#define _EGG_MACROS_H_
-#include <glib/gmacros.h>
+#include <glib.h>
+#include <glib/gprintf.h>
G_BEGIN_DECLS
diff --git a/src/eggfileformatchooser.c b/src/eggfileformatchooser.c
index 32ce2ab..febfc2e 100644
--- a/src/eggfileformatchooser.c
+++ b/src/eggfileformatchooser.c
@@ -19,6 +19,8 @@
#include "eggfileformatchooser.h"
#include "egg-macros.h"
+#include <glib.h>
+#include <glib/gprintf.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include <string.h>
|