aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>1998-10-01 03:08:39 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-10-01 03:08:39 +0800
commit63d572bcbc667902a5cc3e78c6e3429729f076d4 (patch)
tree2ec13c0b86e8be8b6a2aa3f91a22979352fb8a71
parente6ffe37f192876fd256ef29fcbabfbbc009e6c64 (diff)
downloadgsoc2013-evolution-63d572bcbc667902a5cc3e78c6e3429729f076d4.tar
gsoc2013-evolution-63d572bcbc667902a5cc3e78c6e3429729f076d4.tar.gz
gsoc2013-evolution-63d572bcbc667902a5cc3e78c6e3429729f076d4.tar.bz2
gsoc2013-evolution-63d572bcbc667902a5cc3e78c6e3429729f076d4.tar.lz
gsoc2013-evolution-63d572bcbc667902a5cc3e78c6e3429729f076d4.tar.xz
gsoc2013-evolution-63d572bcbc667902a5cc3e78c6e3429729f076d4.tar.zst
gsoc2013-evolution-63d572bcbc667902a5cc3e78c6e3429729f076d4.zip
Made all of the header inclussion conditionals consistent
svn path=/trunk/; revision=416
-rw-r--r--widgets/misc/e-colors.h6
-rw-r--r--widgets/misc/e-cursors.c6
-rw-r--r--widgets/misc/e-cursors.h6
3 files changed, 9 insertions, 9 deletions
diff --git a/widgets/misc/e-colors.h b/widgets/misc/e-colors.h
index 0381871e5e..4919000221 100644
--- a/widgets/misc/e-colors.h
+++ b/widgets/misc/e-colors.h
@@ -1,5 +1,5 @@
-#ifndef COLOR_H
-#define COLOR_H
+#ifndef GNUMERIC_COLOR_H
+#define GNUMERIC_COLOR_H
void color_init (void);
@@ -11,4 +11,4 @@ void color_alloc_gdk (GdkColor *color);
/* Colors used by any GnumericSheet item */
extern GdkColor gs_white, gs_light_gray, gs_dark_gray, gs_black, gs_red;
-#endif
+#endif /* GNUMERIC_COLOR_H */
diff --git a/widgets/misc/e-cursors.c b/widgets/misc/e-cursors.c
index 4927277833..b4eb2436ec 100644
--- a/widgets/misc/e-cursors.c
+++ b/widgets/misc/e-cursors.c
@@ -1,5 +1,5 @@
-#ifndef CURSORS_H
-#define CURSORS_H
+#ifndef GNUMERIC_CURSORS_H
+#define GNUMERIC_CURSORS_H
typedef struct {
GdkCursor *cursor;
@@ -22,4 +22,4 @@ void cursors_shutdown (void);
#define cursor_set_widget(w,c) \
gdk_window_set_cursor (GTK_WIDGET (w)->window, gnumeric_cursors [c].cursor)
-#endif
+#endif /* GNUMERIC_CURSORS_H */
diff --git a/widgets/misc/e-cursors.h b/widgets/misc/e-cursors.h
index 4927277833..b4eb2436ec 100644
--- a/widgets/misc/e-cursors.h
+++ b/widgets/misc/e-cursors.h
@@ -1,5 +1,5 @@
-#ifndef CURSORS_H
-#define CURSORS_H
+#ifndef GNUMERIC_CURSORS_H
+#define GNUMERIC_CURSORS_H
typedef struct {
GdkCursor *cursor;
@@ -22,4 +22,4 @@ void cursors_shutdown (void);
#define cursor_set_widget(w,c) \
gdk_window_set_cursor (GTK_WIDGET (w)->window, gnumeric_cursors [c].cursor)
-#endif
+#endif /* GNUMERIC_CURSORS_H */