[gnome-control-center] Fix includes for gdesktop-enums.h



commit 4e06cd6236d0d4d9b8a1de30ca312a8ed71a1769
Author: Alexander Larsson <alexl redhat com>
Date:   Thu Feb 17 20:59:55 2011 +0100

    Fix includes for gdesktop-enums.h
    
    The file is in $incdir/gsettings-desktop-schemas/gdesktop-enums.h,
    and pkg-config returns -I$incdir/gsettings-desktop-schemas, so the
    right way is to #include <gdesktop-enums.h> which is what other modules
    do.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=642369

 panels/background/bg-colors-source.c    |    2 +-
 panels/background/bg-flickr-source.c    |    2 +-
 panels/background/bg-pictures-source.c  |    2 +-
 panels/background/cc-background-item.c  |    2 +-
 panels/background/cc-background-item.h  |    2 +-
 panels/background/cc-background-panel.c |    2 +-
 panels/background/cc-background-xml.c   |    2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/panels/background/bg-colors-source.c b/panels/background/bg-colors-source.c
index d5f1bc5..c8299db 100644
--- a/panels/background/bg-colors-source.c
+++ b/panels/background/bg-colors-source.c
@@ -26,7 +26,7 @@
 #include "cc-background-item.h"
 
 #include <glib/gi18n-lib.h>
-#include <gsettings-desktop-schemas/gdesktop-enums.h>
+#include <gdesktop-enums.h>
 
 G_DEFINE_TYPE (BgColorsSource, bg_colors_source, BG_TYPE_SOURCE)
 
diff --git a/panels/background/bg-flickr-source.c b/panels/background/bg-flickr-source.c
index 3fe18a7..9219d75 100644
--- a/panels/background/bg-flickr-source.c
+++ b/panels/background/bg-flickr-source.c
@@ -27,7 +27,7 @@
 #include <libsocialweb-client/sw-client-service.h>
 
 #include "cc-background-item.h"
-#include <gsettings-desktop-schemas/gdesktop-enums.h>
+#include <gdesktop-enums.h>
 
 G_DEFINE_TYPE (BgFlickrSource, bg_flickr_source, BG_TYPE_SOURCE)
 
diff --git a/panels/background/bg-pictures-source.c b/panels/background/bg-pictures-source.c
index 0b8ba08..5f2a02c 100644
--- a/panels/background/bg-pictures-source.c
+++ b/panels/background/bg-pictures-source.c
@@ -27,7 +27,7 @@
 #include <string.h>
 #include <gio/gio.h>
 #include <libgnome-desktop/gnome-desktop-thumbnail.h>
-#include <gsettings-desktop-schemas/gdesktop-enums.h>
+#include <gdesktop-enums.h>
 
 G_DEFINE_TYPE (BgPicturesSource, bg_pictures_source, BG_TYPE_SOURCE)
 
diff --git a/panels/background/cc-background-item.c b/panels/background/cc-background-item.c
index 64e8a51..af1951a 100644
--- a/panels/background/cc-background-item.c
+++ b/panels/background/cc-background-item.c
@@ -28,7 +28,7 @@
 #include <glib/gi18n-lib.h>
 
 #include <libgnome-desktop/gnome-bg.h>
-#include <gsettings-desktop-schemas/gdesktop-enums.h>
+#include <gdesktop-enums.h>
 
 #include "cc-background-item.h"
 #include "gdesktop-enums-types.h"
diff --git a/panels/background/cc-background-item.h b/panels/background/cc-background-item.h
index 943d0d4..4781dc7 100644
--- a/panels/background/cc-background-item.h
+++ b/panels/background/cc-background-item.h
@@ -24,7 +24,7 @@
 #include <glib-object.h>
 
 #include <libgnome-desktop/gnome-desktop-thumbnail.h>
-#include <gsettings-desktop-schemas/gdesktop-enums.h>
+#include <gdesktop-enums.h>
 #include <libgnome-desktop/gnome-bg.h>
 
 G_BEGIN_DECLS
diff --git a/panels/background/cc-background-panel.c b/panels/background/cc-background-panel.c
index 07008f4..68b00ab 100644
--- a/panels/background/cc-background-panel.c
+++ b/panels/background/cc-background-panel.c
@@ -23,7 +23,7 @@
 
 #include <string.h>
 #include <glib/gi18n-lib.h>
-#include <gsettings-desktop-schemas/gdesktop-enums.h>
+#include <gdesktop-enums.h>
 
 #include "cc-background-panel.h"
 #include "bg-wallpapers-source.h"
diff --git a/panels/background/cc-background-xml.c b/panels/background/cc-background-xml.c
index 46e340f..0538145 100644
--- a/panels/background/cc-background-xml.c
+++ b/panels/background/cc-background-xml.c
@@ -24,7 +24,7 @@
 #include <string.h>
 #include <libxml/parser.h>
 #include <libgnome-desktop/gnome-bg.h>
-#include <gsettings-desktop-schemas/gdesktop-enums.h>
+#include <gdesktop-enums.h>
 
 #include "gdesktop-enums-types.h"
 #include "cc-background-item.h"



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]