summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2007-04-07 17:48:51 -0400
committerRay Strode <rstrode@redhat.com>2007-04-07 17:48:51 -0400
commitd0db311da9df58ad396477c918ce9a44fe464e57 (patch)
tree426d202994d15bca3fd3dedcbdae5ca95bdc0945
parent9330de7f7cc99bad600acbd78b10b6b79ed80dba (diff)
add config.h to the top of every source file
-rw-r--r--FIGURING-OUT-WHAT-TO-REDRAW2
-rw-r--r--src/pop-demo.c2
-rw-r--r--src/pop-event-listener.c1
-rw-r--r--src/pop-overlay-window.c1
-rw-r--r--src/pop-window-stack.c1
-rw-r--r--src/pop-window-view.c3
-rw-r--r--src/pop-window-view.h4
7 files changed, 8 insertions, 6 deletions
diff --git a/FIGURING-OUT-WHAT-TO-REDRAW b/FIGURING-OUT-WHAT-TO-REDRAW
index b91c959..d8d32cf 100644
--- a/FIGURING-OUT-WHAT-TO-REDRAW
+++ b/FIGURING-OUT-WHAT-TO-REDRAW
@@ -22,7 +22,7 @@ One possible way to solve the problem is to institute a sort comparison
function that returns the difference of two views. This function would
return an area that encompasses the part of the first view that doesn't
overlap with the second view. In addition, the area would need to
-account for (include) overlapping areas where the second view isn't
+account for (I mean, include) overlapping areas where the second view isn't
fully opaque. To figure out which part of a given view needs to be
redrawn, the application would call the comparison function for that
view against all of the views that are higher in the stack than it. The
diff --git a/src/pop-demo.c b/src/pop-demo.c
index 5d6efe4..53aa7de 100644
--- a/src/pop-demo.c
+++ b/src/pop-demo.c
@@ -1,3 +1,5 @@
+#include "config.h"
+
#include <unistd.h>
#include <glib.h>
diff --git a/src/pop-event-listener.c b/src/pop-event-listener.c
index 4411f31..70e5297 100644
--- a/src/pop-event-listener.c
+++ b/src/pop-event-listener.c
@@ -17,6 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
+#include "config.h"
#include "pop-event-listener.h"
#include <errno.h>
diff --git a/src/pop-overlay-window.c b/src/pop-overlay-window.c
index 5e7c48a..955eccb 100644
--- a/src/pop-overlay-window.c
+++ b/src/pop-overlay-window.c
@@ -20,6 +20,7 @@
*
* Originally written by: Ray Strode <rstrode@redhat.com>
*/
+#include "config.h"
#include "pop-overlay-window.h"
#include <errno.h>
diff --git a/src/pop-window-stack.c b/src/pop-window-stack.c
index 581bf72..c81193d 100644
--- a/src/pop-window-stack.c
+++ b/src/pop-window-stack.c
@@ -17,6 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
+#include "config.h"
#include "pop-window-stack.h"
#include <errno.h>
diff --git a/src/pop-window-view.c b/src/pop-window-view.c
index aee0cb6..d3976b6 100644
--- a/src/pop-window-view.c
+++ b/src/pop-window-view.c
@@ -17,6 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
+#include "config.h"
#include "pop-window-view.h"
#include <errno.h>
@@ -55,9 +56,7 @@ struct _PopWindowViewPrivate
gint width, height;
};
-#if 0
static void pop_window_view_class_install_signals (PopWindowViewClass *view_class);
-#endif
static void pop_window_view_class_install_properties (PopWindowViewClass *view_class);
static void pop_window_view_set_property (GObject * object,
diff --git a/src/pop-window-view.h b/src/pop-window-view.h
index f0b0220..09ed8e0 100644
--- a/src/pop-window-view.h
+++ b/src/pop-window-view.h
@@ -55,9 +55,7 @@ struct _PopWindowViewClass
GObjectClass parent_class;
/* signals */
-#if 0
- void (*foo) (PopWindowView * window);
-#endif
+ void (* foo) (PopWindowView * window);
};
enum _PopWindowViewError