Author: martinn
Date: Sun Feb 17 16:05:51 2008
New Revision: 2036
URL: http://svn.gnome.org/viewvc/gegl?rev=2036&view=rev
Log:
2008-02-17 Martin Nordholts <[EMAIL PROTECTED]>
* bin/node-editors/level.c
* bin/node-editors/whitebalance.c
* bin/node-editors/unsharp-mask.c
* bin/node-editors/gaussian-blur.c
* bin/node-editors/brightness-contrast.c: Fix includes.
Modified:
trunk/ChangeLog
trunk/bin/node-editors/brightness-contrast.c
trunk/bin/node-editors/gaussian-blur.c
trunk/bin/node-editors/level.c
trunk/bin/node-editors/unsharp-mask.c
trunk/bin/node-editors/whitebalance.c
Modified: trunk/bin/node-editors/brightness-contrast.c
==============================================================================
--- trunk/bin/node-editors/brightness-contrast.c (original)
+++ trunk/bin/node-editors/brightness-contrast.c Sun Feb 17 16:05:51 2008
@@ -16,8 +16,16 @@
* Copyright (C) 2003, 2004, 2006 Øyvind Kolås
*/
+#include "config.h"
+
+#include <math.h>
+#include <gtk/gtk.h>
+
+#include "gegl-bin-gui-types.h"
+
#include "gegl-node-editor-plugin.h"
+
typedef struct _BrightnessContrast BrightnessContrast;
typedef struct _BrightnessContrastClass BrightnessContrastClass;
Modified: trunk/bin/node-editors/gaussian-blur.c
==============================================================================
--- trunk/bin/node-editors/gaussian-blur.c (original)
+++ trunk/bin/node-editors/gaussian-blur.c Sun Feb 17 16:05:51 2008
@@ -16,11 +16,19 @@
* Copyright (C) 2003, 2004, 2006 Øyvind Kolås
*/
-#include "gegl-node-editor-plugin.h"
+#include "config.h"
+
#include <math.h>
+#include <gtk/gtk.h>
+
+#include "gegl-bin-gui-types.h"
+
+#include "gegl-node-editor-plugin.h"
+
#define SCALE 20
+
typedef struct _GaussianBlur
{
GeglNodeEditor parent_instance;
Modified: trunk/bin/node-editors/level.c
==============================================================================
--- trunk/bin/node-editors/level.c (original)
+++ trunk/bin/node-editors/level.c Sun Feb 17 16:05:51 2008
@@ -16,8 +16,15 @@
* Copyright (C) 2003, 2004, 2006 Øyvind Kolås
*/
+#include "config.h"
+
+#include <gtk/gtk.h>
+
+#include "gegl-bin-gui-types.h"
+
#include "gegl-node-editor-plugin.h"
+
typedef struct _Level
{
GeglNodeEditor parent_instance;
Modified: trunk/bin/node-editors/unsharp-mask.c
==============================================================================
--- trunk/bin/node-editors/unsharp-mask.c (original)
+++ trunk/bin/node-editors/unsharp-mask.c Sun Feb 17 16:05:51 2008
@@ -16,8 +16,14 @@
* Copyright (C) 2003, 2004, 2006 Øyvind Kolås
*/
-#include "gegl-node-editor-plugin.h"
+#include "config.h"
+
#include <math.h>
+#include <gtk/gtk.h>
+
+#include "gegl-bin-gui-types.h"
+
+#include "gegl-node-editor-plugin.h"
#define SCALE 20
Modified: trunk/bin/node-editors/whitebalance.c
==============================================================================
--- trunk/bin/node-editors/whitebalance.c (original)
+++ trunk/bin/node-editors/whitebalance.c Sun Feb 17 16:05:51 2008
@@ -16,8 +16,14 @@
* Copyright (C) 2003, 2004, 2006 Øyvind Kolås
*/
-#include "gegl-node-editor-plugin.h"
+#include "config.h"
+
#include <math.h>
+#include <gtk/gtk.h>
+
+#include "gegl-bin-gui-types.h"
+
+#include "gegl-node-editor-plugin.h"
#define SCALE 20
_______________________________________________
SVN-commits-list mailing list (read only)
http://mail.gnome.org/mailman/listinfo/svn-commits-list
Want to limit the commits to a few modules? Go to above URL, log in to edit
your options and select the modules ('topics') you want.
Module maintainer? It is possible to set the reply-to to your development
mailing list. Email [EMAIL PROTECTED] if interested.