diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2006-09-30 13:59:01 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-09-30 13:59:01 +0000 |
commit | 20b39ffafad66ba1746de6954aa85653d135a5b8 (patch) | |
tree | 205ef8445cf96574a21a87a505e8d5ba9602b5d5 /gobject/gobject.c | |
parent | b6a3cd8039125e04d6f72d37c2bbf46610c9959c (diff) |
Fix some issues with PLT entries.
Diffstat (limited to 'gobject/gobject.c')
-rw-r--r-- | gobject/gobject.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gobject/gobject.c b/gobject/gobject.c index d5290a108..7514c9a3d 100644 --- a/gobject/gobject.c +++ b/gobject/gobject.c @@ -17,7 +17,6 @@ * Boston, MA 02111-1307, USA. */ #include "gobject.h" -#include "gobjectalias.h" #include <glib/gdatasetprivate.h> /* @@ -28,10 +27,14 @@ #include "gsignal.h" #include "gparamspecs.h" #include "gvaluetypes.h" -#include "gobjectnotifyqueue.c" #include <string.h> #include <signal.h> +#include "gobjectalias.h" + +/* This should be included after gobjectalias.h (or pltcheck.sh will fail) */ +#include "gobjectnotifyqueue.c" + #define PREALLOC_CPARAMS (8) |