[rhythmbox] use include paths relative to source root in header files



commit 061a53a9af6f3eb7436107ebf10d79b0e45f4c8b
Author: Jonathan Matthew <jonathan d14n org>
Date:   Wed Mar 31 21:58:44 2010 +1000

    use include paths relative to source root in header files
    
    This is the first step towards installing a set of headers suitable for
    building C plugins outside the source tree.

 backends/rb-encoder.h                          |    2 +-
 backends/rb-player.h                           |    2 +-
 metadata/rb-metadata-gst-common.h              |    2 +-
 podcast/rb-feed-podcast-properties-dialog.h    |    2 +-
 podcast/rb-podcast-manager.h                   |    2 +-
 podcast/rb-podcast-properties-dialog.h         |    2 +-
 rhythmdb/rhythmdb-import-job.h                 |    2 +-
 rhythmdb/rhythmdb-private.h                    |    6 +++---
 rhythmdb/rhythmdb-property-model.h             |    4 ++--
 rhythmdb/rhythmdb-query-model.h                |    2 +-
 rhythmdb/rhythmdb-tree.h                       |    4 ++--
 rhythmdb/rhythmdb.h                            |    6 +++---
 shell/rb-history.h                             |    3 +--
 shell/rb-missing-plugins.h                     |    2 +-
 shell/rb-play-order-linear-loop.h              |    4 ++--
 shell/rb-play-order-linear.h                   |    5 ++---
 shell/rb-play-order-queue.h                    |    5 ++---
 shell/rb-play-order-random-by-age-and-rating.h |    5 ++---
 shell/rb-play-order-random-by-age.h            |    5 ++---
 shell/rb-play-order-random-by-rating.h         |    5 ++---
 shell/rb-play-order-random-equal-weights.h     |    5 ++---
 shell/rb-play-order-shuffle.h                  |    5 ++---
 shell/rb-play-order.h                          |    2 +-
 shell/rb-playlist-manager.h                    |    6 +++---
 shell/rb-plugin.h                              |    2 +-
 shell/rb-plugins-engine.h                      |    2 +-
 shell/rb-python-plugin.h                       |    2 +-
 shell/rb-removable-media-manager.h             |    8 ++++----
 shell/rb-shell-clipboard.h                     |    4 ++--
 shell/rb-shell-player.h                        |    4 ++--
 shell/rb-shell-preferences.h                   |    2 +-
 shell/rb-shell.h                               |    6 +++---
 shell/rb-source-header.h                       |    2 +-
 shell/rb-statusbar.h                           |    4 ++--
 sources/rb-auto-playlist-source.h              |    2 +-
 sources/rb-browser-source.h                    |    6 +++---
 sources/rb-import-errors-source.h              |    6 +++---
 sources/rb-library-source.h                    |    6 +++---
 sources/rb-media-player-source.h               |    6 +++---
 sources/rb-missing-files-source.h              |    6 +++---
 sources/rb-play-queue-source.h                 |    2 +-
 sources/rb-playlist-source.h                   |   10 +++++-----
 sources/rb-podcast-source.h                    |    4 ++--
 sources/rb-removable-media-source.h            |    6 +++---
 sources/rb-source-search-basic.h               |    4 ++--
 sources/rb-source-search.h                     |    2 +-
 sources/rb-source.h                            |   10 +++++-----
 sources/rb-sourcelist-model.h                  |    2 +-
 sources/rb-sourcelist.h                        |    4 ++--
 sources/rb-static-playlist-source.h            |    4 ++--
 sources/rb-streaming-source.h                  |    2 +-
 widgets/rb-entry-view.h                        |    4 ++--
 widgets/rb-header.h                            |    4 ++--
 widgets/rb-library-browser.h                   |    6 +++---
 widgets/rb-property-view.h                     |    6 +++---
 widgets/rb-query-creator.h                     |    4 ++--
 widgets/rb-song-info.h                         |    6 +++---
 57 files changed, 114 insertions(+), 122 deletions(-)
---
diff --git a/backends/rb-encoder.h b/backends/rb-encoder.h
index d8e4b61..52f697f 100644
--- a/backends/rb-encoder.h
+++ b/backends/rb-encoder.h
@@ -31,7 +31,7 @@
 
 #include <glib-object.h>
 
-#include "rhythmdb.h"
+#include <rhythmdb/rhythmdb.h>
 
 G_BEGIN_DECLS
 
diff --git a/backends/rb-player.h b/backends/rb-player.h
index c88d3c9..f03a414 100644
--- a/backends/rb-player.h
+++ b/backends/rb-player.h
@@ -31,7 +31,7 @@
 
 #include <glib-object.h>
 #include <gdk-pixbuf/gdk-pixbuf.h>
-#include "rb-metadata.h"
+#include <metadata/rb-metadata.h>
 
 G_BEGIN_DECLS
 
diff --git a/metadata/rb-metadata-gst-common.h b/metadata/rb-metadata-gst-common.h
index c8b891d..b1e8dad 100644
--- a/metadata/rb-metadata-gst-common.h
+++ b/metadata/rb-metadata-gst-common.h
@@ -32,7 +32,7 @@ G_BEGIN_DECLS
 
 #include <glib.h>
 
-#include "rb-metadata.h"
+#include <metadata/rb-metadata.h>
 
 typedef enum {
 	MEDIA_TYPE_NONE = 0,
diff --git a/podcast/rb-feed-podcast-properties-dialog.h b/podcast/rb-feed-podcast-properties-dialog.h
index cdc10ca..329aee5 100644
--- a/podcast/rb-feed-podcast-properties-dialog.h
+++ b/podcast/rb-feed-podcast-properties-dialog.h
@@ -27,7 +27,7 @@
 
 #include <gtk/gtk.h>
 
-#include "rhythmdb.h"
+#include <rhythmdb/rhythmdb.h>
 
 #ifndef __RB_FEED_PODCAST_PROPERTIES_DIALOG_H
 #define __RB_FEED_PODCAST_PROPERTIES_DIALOG_H
diff --git a/podcast/rb-podcast-manager.h b/podcast/rb-podcast-manager.h
index b572d67..22695b3 100644
--- a/podcast/rb-podcast-manager.h
+++ b/podcast/rb-podcast-manager.h
@@ -27,7 +27,7 @@
  */
 
 #include <glib.h>
-#include "rhythmdb.h"
+#include <rhythmdb/rhythmdb.h>
 
 #ifndef RB_PODCAST_MANAGER_H
 #define RB_PODCAST_MANAGER_H
diff --git a/podcast/rb-podcast-properties-dialog.h b/podcast/rb-podcast-properties-dialog.h
index c7aac35..b095332 100644
--- a/podcast/rb-podcast-properties-dialog.h
+++ b/podcast/rb-podcast-properties-dialog.h
@@ -26,7 +26,7 @@
  */
 
 #include <gtk/gtk.h>
-#include "rb-entry-view.h"
+#include <widgets/rb-entry-view.h>
 
 #ifndef __RB_PODCAST_PROPERTIES_DIALOG_H
 #define __RB_PODCAST_PROPERTIES_DIALOG_H
diff --git a/rhythmdb/rhythmdb-import-job.h b/rhythmdb/rhythmdb-import-job.h
index e228f02..5b84b7a 100644
--- a/rhythmdb/rhythmdb-import-job.h
+++ b/rhythmdb/rhythmdb-import-job.h
@@ -31,7 +31,7 @@
 #include <glib.h>
 #include <glib-object.h>
 
-#include "rhythmdb.h"
+#include <rhythmdb/rhythmdb.h>
 
 G_BEGIN_DECLS
 
diff --git a/rhythmdb/rhythmdb-private.h b/rhythmdb/rhythmdb-private.h
index 890a556..75a30e9 100644
--- a/rhythmdb/rhythmdb-private.h
+++ b/rhythmdb/rhythmdb-private.h
@@ -28,9 +28,9 @@
 #ifndef RHYTHMDB_PRIVATE_H
 #define RHYTHMDB_PRIVATE_H
 
-#include "rhythmdb.h"
-#include "rb-refstring.h"
-#include "rb-metadata.h"
+#include <rhythmdb/rhythmdb.h>
+#include <rhythmdb/rb-refstring.h>
+#include <metadata/rb-metadata.h>
 
 G_BEGIN_DECLS
 
diff --git a/rhythmdb/rhythmdb-property-model.h b/rhythmdb/rhythmdb-property-model.h
index fee3bcd..94576c2 100644
--- a/rhythmdb/rhythmdb-property-model.h
+++ b/rhythmdb/rhythmdb-property-model.h
@@ -29,8 +29,8 @@
 #include <glib.h>
 #include <gtk/gtk.h>
 
-#include "rhythmdb.h"
-#include "rhythmdb-query-model.h"
+#include <rhythmdb/rhythmdb.h>
+#include <rhythmdb/rhythmdb-query-model.h>
 
 #ifndef RHYTHMDB_PROPERTY_MODEL_H
 #define RHYTHMDB_PROPERTY_MODEL_H
diff --git a/rhythmdb/rhythmdb-query-model.h b/rhythmdb/rhythmdb-query-model.h
index 7ee1ab6..db4c3f7 100644
--- a/rhythmdb/rhythmdb-query-model.h
+++ b/rhythmdb/rhythmdb-query-model.h
@@ -30,7 +30,7 @@
 #include <glib.h>
 #include <gtk/gtk.h>
 
-#include "rhythmdb.h"
+#include <rhythmdb/rhythmdb.h>
 
 #ifndef RHYTHMDB_QUERY_MODEL_H
 #define RHYTHMDB_QUERY_MODEL_H
diff --git a/rhythmdb/rhythmdb-tree.h b/rhythmdb/rhythmdb-tree.h
index 93b1b10..600c554 100644
--- a/rhythmdb/rhythmdb-tree.h
+++ b/rhythmdb/rhythmdb-tree.h
@@ -28,9 +28,9 @@
 #ifndef RHYTHMDB_TREE_H
 #define RHYTHMDB_TREE_H
 
-#include "rhythmdb-private.h"
-#include <glib-object.h>
 #include <glib.h>
+#include <glib-object.h>
+#include <rhythmdb/rhythmdb-private.h>
 
 G_BEGIN_DECLS
 
diff --git a/rhythmdb/rhythmdb.h b/rhythmdb/rhythmdb.h
index 498c9a9..4d4039c 100644
--- a/rhythmdb/rhythmdb.h
+++ b/rhythmdb/rhythmdb.h
@@ -34,9 +34,9 @@
 #include <stdarg.h>
 #include <libxml/tree.h>
 
-#include "rb-refstring.h"
-#include "rb-string-value-map.h"
-#include "rhythmdb-query-results.h"
+#include <rhythmdb/rb-refstring.h>
+#include <lib/rb-string-value-map.h>
+#include <rhythmdb/rhythmdb-query-results.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-history.h b/shell/rb-history.h
index 69dc28e..536cd64 100644
--- a/shell/rb-history.h
+++ b/shell/rb-history.h
@@ -26,8 +26,7 @@
  */
 
 #include <glib.h>
-#include "rhythmdb.h"
-#include "rb-shell-player.h"
+#include <rhythmdb/rhythmdb.h>
 
 #ifndef __RB_HISTORY_H
 #define __RB_HISTORY_H
diff --git a/shell/rb-missing-plugins.h b/shell/rb-missing-plugins.h
index f6e15b3..8f3c0d8 100644
--- a/shell/rb-missing-plugins.h
+++ b/shell/rb-missing-plugins.h
@@ -24,7 +24,7 @@
 #ifndef RB_MISSING_PLUGINS_H
 #define RB_MISSING_PLUGINS_H
 
-#include "rb-shell.h"
+#include <shell/rb-shell.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-play-order-linear-loop.h b/shell/rb-play-order-linear-loop.h
index 7db0e2a..049abe1 100644
--- a/shell/rb-play-order-linear-loop.h
+++ b/shell/rb-play-order-linear-loop.h
@@ -28,9 +28,9 @@
 #ifndef __RB_PLAY_ORDER_LINEAR_LOOP_H
 #define __RB_PLAY_ORDER_LINEAR_LOOP_H
 
-#include "rb-play-order.h"
+#include <shell/rb-play-order.h>
 
-#include "rb-shell-player.h"
+#include <shell/rb-shell-player.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-play-order-linear.h b/shell/rb-play-order-linear.h
index 1e78dcd..cdedd9a 100644
--- a/shell/rb-play-order-linear.h
+++ b/shell/rb-play-order-linear.h
@@ -28,9 +28,8 @@
 #ifndef __RB_PLAY_ORDER_LINEAR_H
 #define __RB_PLAY_ORDER_LINEAR_H
 
-#include "rb-play-order.h"
-
-#include "rb-shell-player.h"
+#include <shell/rb-play-order.h>
+#include <shell/rb-shell-player.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-play-order-queue.h b/shell/rb-play-order-queue.h
index 2bf0b46..d85ed98 100644
--- a/shell/rb-play-order-queue.h
+++ b/shell/rb-play-order-queue.h
@@ -28,9 +28,8 @@
 #ifndef __RB_PLAY_ORDER_QUEUE_H
 #define __RB_PLAY_ORDER_QUEUE_H
 
-#include "rb-play-order.h"
-
-#include "rb-shell-player.h"
+#include <shell/rb-play-order.h>
+#include <shell/rb-shell-player.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-play-order-random-by-age-and-rating.h b/shell/rb-play-order-random-by-age-and-rating.h
index 24a7f8b..dbb0dc1 100644
--- a/shell/rb-play-order-random-by-age-and-rating.h
+++ b/shell/rb-play-order-random-by-age-and-rating.h
@@ -28,9 +28,8 @@
 #ifndef __RB_PLAY_ORDER_RANDOM_BY_AGE_AND_RATING_H
 #define __RB_PLAY_ORDER_RANDOM_BY_AGE_AND_RATING_H
 
-#include "rb-play-order-random.h"
-
-#include "rb-shell-player.h"
+#include <shell/rb-play-order-random.h>
+#include <shell/rb-shell-player.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-play-order-random-by-age.h b/shell/rb-play-order-random-by-age.h
index 2288040..9970093 100644
--- a/shell/rb-play-order-random-by-age.h
+++ b/shell/rb-play-order-random-by-age.h
@@ -28,9 +28,8 @@
 #ifndef __RB_PLAY_ORDER_RANDOM_BY_AGE_H
 #define __RB_PLAY_ORDER_RANDOM_BY_AGE_H
 
-#include "rb-play-order-random.h"
-
-#include "rb-shell-player.h"
+#include <shell/rb-play-order-random.h>
+#include <shell/rb-shell-player.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-play-order-random-by-rating.h b/shell/rb-play-order-random-by-rating.h
index 91f18a2..dcade14 100644
--- a/shell/rb-play-order-random-by-rating.h
+++ b/shell/rb-play-order-random-by-rating.h
@@ -28,9 +28,8 @@
 #ifndef __RB_PLAY_ORDER_RANDOM_BY_RATING_H
 #define __RB_PLAY_ORDER_RANDOM_BY_RATING_H
 
-#include "rb-play-order-random.h"
-
-#include "rb-shell-player.h"
+#include <shell/rb-play-order-random.h>
+#include <shell/rb-shell-player.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-play-order-random-equal-weights.h b/shell/rb-play-order-random-equal-weights.h
index 860a93d..bd09fac 100644
--- a/shell/rb-play-order-random-equal-weights.h
+++ b/shell/rb-play-order-random-equal-weights.h
@@ -28,9 +28,8 @@
 #ifndef __RB_PLAY_ORDER_RANDOM_EQUAL_WEIGHTS_H
 #define __RB_PLAY_ORDER_RANDOM_EQUAL_WEIGHTS_H
 
-#include "rb-play-order-random.h"
-
-#include "rb-shell-player.h"
+#include <shell/rb-play-order-random.h>
+#include <shell/rb-shell-player.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-play-order-shuffle.h b/shell/rb-play-order-shuffle.h
index 2358e7c..5697939 100644
--- a/shell/rb-play-order-shuffle.h
+++ b/shell/rb-play-order-shuffle.h
@@ -28,9 +28,8 @@
 #ifndef __RB_PLAY_ORDER_SHUFFLE_H
 #define __RB_PLAY_ORDER_SHUFFLE_H
 
-#include "rb-play-order.h"
-
-#include "rb-shell-player.h"
+#include <shell/rb-play-order.h>
+#include <shell/rb-shell-player.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-play-order.h b/shell/rb-play-order.h
index 3cc4230..8bb0403 100644
--- a/shell/rb-play-order.h
+++ b/shell/rb-play-order.h
@@ -47,7 +47,7 @@
 #include <rhythmdb/rhythmdb.h>
 #include <rhythmdb/rhythmdb-query-model.h>
 
-#include <rb-shell-player.h>
+#include <shell/rb-shell-player.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-playlist-manager.h b/shell/rb-playlist-manager.h
index b616680..d6d6187 100644
--- a/shell/rb-playlist-manager.h
+++ b/shell/rb-playlist-manager.h
@@ -28,9 +28,9 @@
 #ifndef __RB_PLAYLIST_MANAGER_H
 #define __RB_PLAYLIST_MANAGER_H
 
-#include "rb-source.h"
-#include "rhythmdb.h"
-#include "rb-sourcelist.h"
+#include <sources/rb-source.h>
+#include <sources/rb-sourcelist.h>
+#include <rhythmdb/rhythmdb.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-plugin.h b/shell/rb-plugin.h
index 21adfd4..d94195e 100644
--- a/shell/rb-plugin.h
+++ b/shell/rb-plugin.h
@@ -32,7 +32,7 @@
 
 #include <glib-object.h>
 
-#include "rb-shell.h"
+#include <shell/rb-shell.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-plugins-engine.h b/shell/rb-plugins-engine.h
index 186c6f7..3ef1c8c 100644
--- a/shell/rb-plugins-engine.h
+++ b/shell/rb-plugins-engine.h
@@ -31,7 +31,7 @@
 #define __RB_PLUGINS_ENGINE_H__
 
 #include <glib.h>
-#include <rb-shell.h>
+#include <shell/rb-shell.h>
 
 typedef struct _RBPluginInfo RBPluginInfo;
 
diff --git a/shell/rb-python-plugin.h b/shell/rb-python-plugin.h
index 94c5d44..9a6f32a 100644
--- a/shell/rb-python-plugin.h
+++ b/shell/rb-python-plugin.h
@@ -29,7 +29,7 @@
 
 #include <Python.h>
 #include <glib-object.h>
-#include "rb-plugin.h"
+#include <shell/rb-plugin.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-removable-media-manager.h b/shell/rb-removable-media-manager.h
index 7fa78b9..bf625cc 100644
--- a/shell/rb-removable-media-manager.h
+++ b/shell/rb-removable-media-manager.h
@@ -30,11 +30,11 @@
 
 #include <gio/gio.h>
 
-#include "rb-source.h"
-#include "rhythmdb.h"
-#include "rb-shell.h"
+#include <sources/rb-source.h>
+#include <rhythmdb/rhythmdb.h>
+#include <shell/rb-shell.h>
 
-#include "mediaplayerid.h"
+#include <lib/libmediaplayerid/mediaplayerid.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-shell-clipboard.h b/shell/rb-shell-clipboard.h
index 59c9234..0366470 100644
--- a/shell/rb-shell-clipboard.h
+++ b/shell/rb-shell-clipboard.h
@@ -25,10 +25,10 @@
  *
  */
 
-#include "rb-source.h"
-
 #include <gtk/gtk.h>
 
+#include <sources/rb-source.h>
+
 #ifndef __RB_SHELL_CLIPBOARD_H
 #define __RB_SHELL_CLIPBOARD_H
 
diff --git a/shell/rb-shell-player.h b/shell/rb-shell-player.h
index e98f393..6dd6e3b 100644
--- a/shell/rb-shell-player.h
+++ b/shell/rb-shell-player.h
@@ -28,8 +28,8 @@
 
 #include <gtk/gtk.h>
 
-#include "rb-source.h"
-#include "rhythmdb.h"
+#include <sources/rb-source.h>
+#include <rhythmdb/rhythmdb.h>
 
 #ifndef __RB_SHELL_PLAYER_H
 #define __RB_SHELL_PLAYER_H
diff --git a/shell/rb-shell-preferences.h b/shell/rb-shell-preferences.h
index 86a4933..36b8017 100644
--- a/shell/rb-shell-preferences.h
+++ b/shell/rb-shell-preferences.h
@@ -26,7 +26,7 @@
  */
 
 #include <gtk/gtk.h>
-#include "rb-preferences.h"
+#include <lib/rb-preferences.h>
 
 #ifndef __RB_SHELL_PREFERENCES_H
 #define __RB_SHELL_PREFERENCES_H
diff --git a/shell/rb-shell.h b/shell/rb-shell.h
index db0fce0..945c9f4 100644
--- a/shell/rb-shell.h
+++ b/shell/rb-shell.h
@@ -29,9 +29,9 @@
 #ifndef __RB_SHELL_H
 #define __RB_SHELL_H
 
-#include "rb-source.h"
-#include "rhythmdb.h"
-#include "rb-song-info.h"
+#include <sources/rb-source.h>
+#include <rhythmdb/rhythmdb.h>
+#include <widgets/rb-song-info.h>
 
 G_BEGIN_DECLS
 
diff --git a/shell/rb-source-header.h b/shell/rb-source-header.h
index 6bda8c1..a696823 100644
--- a/shell/rb-source-header.h
+++ b/shell/rb-source-header.h
@@ -27,7 +27,7 @@
 
 #include <gtk/gtk.h>
 
-#include "rb-source.h"
+#include <sources/rb-source.h>
 
 #ifndef __RB_SOURCE_HEADER_H
 #define __RB_SOURCE_HEADER_H
diff --git a/shell/rb-statusbar.h b/shell/rb-statusbar.h
index 39648d4..33a20f1 100644
--- a/shell/rb-statusbar.h
+++ b/shell/rb-statusbar.h
@@ -27,8 +27,8 @@
 
 #include <gtk/gtk.h>
 
-#include "rb-source.h"
-#include "rhythmdb.h"
+#include <sources/rb-source.h>
+#include <rhythmdb/rhythmdb.h>
 
 #ifndef __RB_STATUSBAR_H
 #define __RB_STATUSBAR_H
diff --git a/sources/rb-auto-playlist-source.h b/sources/rb-auto-playlist-source.h
index 9ebda29..c1cdfd0 100644
--- a/sources/rb-auto-playlist-source.h
+++ b/sources/rb-auto-playlist-source.h
@@ -33,7 +33,7 @@
 #ifndef __RB_AUTO_PLAYLIST_SOURCE_H
 #define __RB_AUTO_PLAYLIST_SOURCE_H
 
-#include "rb-playlist-source.h"
+#include <sources/rb-playlist-source.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-browser-source.h b/sources/rb-browser-source.h
index af70c9b..5010b4e 100644
--- a/sources/rb-browser-source.h
+++ b/sources/rb-browser-source.h
@@ -30,9 +30,9 @@
 
 #include <gtk/gtk.h>
 
-#include "rb-shell.h"
-#include "rb-source.h"
-#include "rhythmdb.h"
+#include <shell/rb-shell.h>
+#include <sources/rb-source.h>
+#include <rhythmdb/rhythmdb.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-import-errors-source.h b/sources/rb-import-errors-source.h
index cd1190c..6bc621d 100644
--- a/sources/rb-import-errors-source.h
+++ b/sources/rb-import-errors-source.h
@@ -28,9 +28,9 @@
 #ifndef __RB_IMPORT_ERRORS_SOURCE_H
 #define __RB_IMPORT_ERRORS_SOURCE_H
 
-#include "rb-shell.h"
-#include "rb-source.h"
-#include "rhythmdb.h"
+#include <shell/rb-shell.h>
+#include <sources/rb-source.h>
+#include <rhythmdb/rhythmdb.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-library-source.h b/sources/rb-library-source.h
index 4e25556..149175f 100644
--- a/sources/rb-library-source.h
+++ b/sources/rb-library-source.h
@@ -30,9 +30,9 @@
 
 #include <gtk/gtk.h>
 
-#include "rb-shell.h"
-#include "rb-browser-source.h"
-#include "rhythmdb.h"
+#include <shell/rb-shell.h>
+#include <sources/rb-browser-source.h>
+#include <rhythmdb/rhythmdb.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-media-player-source.h b/sources/rb-media-player-source.h
index fbbe628..a35f2cd 100644
--- a/sources/rb-media-player-source.h
+++ b/sources/rb-media-player-source.h
@@ -30,9 +30,9 @@
 
 #include <glib.h>
 
-#include "rb-shell.h"
-#include "rb-removable-media-source.h"
-#include "rhythmdb.h"
+#include <shell/rb-shell.h>
+#include <sources/rb-removable-media-source.h>
+#include <rhythmdb/rhythmdb.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-missing-files-source.h b/sources/rb-missing-files-source.h
index 4cf2677..bcaa8c2 100644
--- a/sources/rb-missing-files-source.h
+++ b/sources/rb-missing-files-source.h
@@ -28,9 +28,9 @@
 #ifndef __RB_MISSING_FILES_SOURCE_H
 #define __RB_MISSING_FILES_SOURCE_H
 
-#include "rb-shell.h"
-#include "rb-source.h"
-#include "rb-library-source.h"
+#include <shell/rb-shell.h>
+#include <sources/rb-source.h>
+#include <sources/rb-library-source.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-play-queue-source.h b/sources/rb-play-queue-source.h
index ab26584..22af570 100644
--- a/sources/rb-play-queue-source.h
+++ b/sources/rb-play-queue-source.h
@@ -33,7 +33,7 @@
 #ifndef __RB_PLAY_QUEUE_SOURCE_H
 #define __RB_PLAY_QUEUE_SOURCE_H
 
-#include "rb-static-playlist-source.h"
+#include <sources/rb-static-playlist-source.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-playlist-source.h b/sources/rb-playlist-source.h
index 28e7fa6..ff7d353 100644
--- a/sources/rb-playlist-source.h
+++ b/sources/rb-playlist-source.h
@@ -31,11 +31,11 @@
 
 #include <libxml/tree.h>
 
-#include "rb-shell.h"
-#include "rb-source.h"
-#include "rhythmdb.h"
-#include "rhythmdb-query-model.h"
-#include "rb-playlist-manager.h"
+#include <shell/rb-shell.h>
+#include <sources/rb-source.h>
+#include <rhythmdb/rhythmdb.h>
+#include <rhythmdb/rhythmdb-query-model.h>
+#include <shell/rb-playlist-manager.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-podcast-source.h b/sources/rb-podcast-source.h
index acb6cdd..5b9dfe9 100644
--- a/sources/rb-podcast-source.h
+++ b/sources/rb-podcast-source.h
@@ -28,8 +28,8 @@
 #ifndef __RB_PODCAST_SOURCE_H
 #define __RB_PODCAST_SOURCE_H
 
-#include "rb-shell.h"
-#include "rb-source.h"
+#include <shell/rb-shell.h>
+#include <sources/rb-source.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-removable-media-source.h b/sources/rb-removable-media-source.h
index 4deac13..4f7670b 100644
--- a/sources/rb-removable-media-source.h
+++ b/sources/rb-removable-media-source.h
@@ -28,9 +28,9 @@
 #ifndef __RB_REMOVABLE_MEDIA_SOURCE_H
 #define __RB_REMOVABLE_MEDIA_SOURCE_H
 
-#include "rb-shell.h"
-#include "rb-browser-source.h"
-#include "rhythmdb.h"
+#include <shell/rb-shell.h>
+#include <sources/rb-browser-source.h>
+#include <rhythmdb/rhythmdb.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-source-search-basic.h b/sources/rb-source-search-basic.h
index d75129e..c46eaa4 100644
--- a/sources/rb-source-search-basic.h
+++ b/sources/rb-source-search-basic.h
@@ -34,8 +34,8 @@
 
 #include <gtk/gtk.h>
 
-#include <rb-source-search.h>
-#include <rhythmdb.h>
+#include <sources/rb-source-search.h>
+#include <rhythmdb/rhythmdb.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-source-search.h b/sources/rb-source-search.h
index ba84fa0..05464f9 100644
--- a/sources/rb-source-search.h
+++ b/sources/rb-source-search.h
@@ -29,7 +29,7 @@
 #define __RB_SOURCE_SEARCH_H
 
 #include <glib-object.h>
-#include <rhythmdb.h>
+#include <rhythmdb/rhythmdb.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-source.h b/sources/rb-source.h
index 49604a9..b1d3613 100644
--- a/sources/rb-source.h
+++ b/sources/rb-source.h
@@ -31,11 +31,11 @@
 
 #include <gtk/gtk.h>
 
-#include "rb-source-group.h"
-#include "rb-source-search.h"
-#include "rb-entry-view.h"
-#include "rb-shell-preferences.h"
-#include "rhythmdb-import-job.h"
+#include <sources/rb-source-group.h>
+#include <sources/rb-source-search.h>
+#include <widgets/rb-entry-view.h>
+#include <shell/rb-shell-preferences.h>
+#include <rhythmdb/rhythmdb-import-job.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-sourcelist-model.h b/sources/rb-sourcelist-model.h
index 1021b30..b7c1d11 100644
--- a/sources/rb-sourcelist-model.h
+++ b/sources/rb-sourcelist-model.h
@@ -31,7 +31,7 @@
 
 #include <gtk/gtk.h>
 
-#include "rb-source.h"
+#include <sources/rb-source.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-sourcelist.h b/sources/rb-sourcelist.h
index 1f39787..79fc24d 100644
--- a/sources/rb-sourcelist.h
+++ b/sources/rb-sourcelist.h
@@ -31,8 +31,8 @@
 
 #include <gtk/gtk.h>
 
-#include "rb-source.h"
-#include "rb-shell.h"
+#include <sources/rb-source.h>
+#include <shell/rb-shell.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-static-playlist-source.h b/sources/rb-static-playlist-source.h
index 02320ba..2a4c34e 100644
--- a/sources/rb-static-playlist-source.h
+++ b/sources/rb-static-playlist-source.h
@@ -33,8 +33,8 @@
 #ifndef __RB_STATIC_PLAYLIST_SOURCE_H
 #define __RB_STATIC_PLAYLIST_SOURCE_H
 
-#include "rb-playlist-source.h"
-#include "rhythmdb.h"
+#include <sources/rb-playlist-source.h>
+#include <rhythmdb/rhythmdb.h>
 
 G_BEGIN_DECLS
 
diff --git a/sources/rb-streaming-source.h b/sources/rb-streaming-source.h
index e75f051..f5dee40 100644
--- a/sources/rb-streaming-source.h
+++ b/sources/rb-streaming-source.h
@@ -28,7 +28,7 @@
 #ifndef __RB_STREAMING_SOURCE_H
 #define __RB_STREAMING_SOURCE_H
 
-#include "rb-source.h"
+#include <sources/rb-source.h>
 
 G_BEGIN_DECLS
 
diff --git a/widgets/rb-entry-view.h b/widgets/rb-entry-view.h
index acb342d..cd6a2ce 100644
--- a/widgets/rb-entry-view.h
+++ b/widgets/rb-entry-view.h
@@ -31,8 +31,8 @@
 
 #include <gtk/gtk.h>
 
-#include "rhythmdb.h"
-#include "rhythmdb-query-model.h"
+#include <rhythmdb/rhythmdb.h>
+#include <rhythmdb/rhythmdb-query-model.h>
 
 G_BEGIN_DECLS
 
diff --git a/widgets/rb-header.h b/widgets/rb-header.h
index 1dfb246..20aeefa 100644
--- a/widgets/rb-header.h
+++ b/widgets/rb-header.h
@@ -31,8 +31,8 @@
 
 #include <gtk/gtk.h>
 
-#include "rhythmdb.h"
-#include "rb-shell-player.h"
+#include <rhythmdb/rhythmdb.h>
+#include <shell/rb-shell-player.h>
 
 G_BEGIN_DECLS
 
diff --git a/widgets/rb-library-browser.h b/widgets/rb-library-browser.h
index b621e1d..362adf3 100644
--- a/widgets/rb-library-browser.h
+++ b/widgets/rb-library-browser.h
@@ -30,9 +30,9 @@
 
 #include <gtk/gtk.h>
 
-#include "rhythmdb.h"
-#include "rhythmdb-query-model.h"
-#include "rb-property-view.h"
+#include <rhythmdb/rhythmdb.h>
+#include <rhythmdb/rhythmdb-query-model.h>
+#include <widgets/rb-property-view.h>
 
 G_BEGIN_DECLS
 
diff --git a/widgets/rb-property-view.h b/widgets/rb-property-view.h
index 0adf9b5..850c25b 100644
--- a/widgets/rb-property-view.h
+++ b/widgets/rb-property-view.h
@@ -31,9 +31,9 @@
 
 #include <gtk/gtk.h>
 
-#include "rhythmdb.h"
-#include "rhythmdb-property-model.h"
-#include "rb-entry-view.h"
+#include <rhythmdb/rhythmdb.h>
+#include <rhythmdb/rhythmdb-property-model.h>
+#include <widgets/rb-entry-view.h>
 
 G_BEGIN_DECLS
 
diff --git a/widgets/rb-query-creator.h b/widgets/rb-query-creator.h
index fe5687d..96073f5 100644
--- a/widgets/rb-query-creator.h
+++ b/widgets/rb-query-creator.h
@@ -27,8 +27,8 @@
 
 #include <gtk/gtk.h>
 
-#include "rhythmdb.h"
-#include "rhythmdb-query-model.h"
+#include <rhythmdb/rhythmdb.h>
+#include <rhythmdb/rhythmdb-query-model.h>
 
 #ifndef __RB_QUERY_CREATOR_H
 #define __RB_QUERY_CREATOR_H
diff --git a/widgets/rb-song-info.h b/widgets/rb-song-info.h
index 830a914..4116d46 100644
--- a/widgets/rb-song-info.h
+++ b/widgets/rb-song-info.h
@@ -26,9 +26,9 @@
  */
 
 #include <gtk/gtk.h>
-#include "rb-entry-view.h"
-#include "rhythmdb.h"
-#include "rb-source.h"
+#include <widgets/rb-entry-view.h>
+#include <rhythmdb/rhythmdb.h>
+#include <sources/rb-source.h>
 
 #ifndef __RB_SONG_INFO_H
 #define __RB_SONG_INFO_H



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