summaryrefslogtreecommitdiffstats
path: root/gui/mplayer/gtk
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-12 16:03:07 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-04-12 16:03:07 +0000
commita1a1bd5e31f948eed5c83d3d84cc843209e60669 (patch)
tree439bbd19c6d386e31166ce2c636dcf7cde11655f /gui/mplayer/gtk
parentaa5ecdffd5e03ae9002d2a38ac3306c2d63a3fa7 (diff)
downloadmpv-a1a1bd5e31f948eed5c83d3d84cc843209e60669.tar.bz2
mpv-a1a1bd5e31f948eed5c83d3d84cc843209e60669.tar.xz
Make include paths consistent; do not use ../ in them.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26414 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'gui/mplayer/gtk')
-rw-r--r--gui/mplayer/gtk/about.c2
-rw-r--r--gui/mplayer/gtk/eq.c2
-rw-r--r--gui/mplayer/gtk/fs.c4
-rw-r--r--gui/mplayer/gtk/gtk_url.c4
-rw-r--r--gui/mplayer/gtk/mb.c2
-rw-r--r--gui/mplayer/gtk/menu.c8
-rw-r--r--gui/mplayer/gtk/opts.c2
-rw-r--r--gui/mplayer/gtk/pl.c2
-rw-r--r--gui/mplayer/gtk/sb.c2
9 files changed, 14 insertions, 14 deletions
diff --git a/gui/mplayer/gtk/about.c b/gui/mplayer/gtk/about.c
index 8717ccbdba..e54d83ebaa 100644
--- a/gui/mplayer/gtk/about.c
+++ b/gui/mplayer/gtk/about.c
@@ -3,7 +3,7 @@
#include "help_mp.h"
#include "gui/mplayer/pixmaps/about.xpm"
-#include "../widgets.h"
+#include "gui/mplayer/widgets.h"
#include "about.h"
#include "gtk_common.h"
diff --git a/gui/mplayer/gtk/eq.c b/gui/mplayer/gtk/eq.c
index 2d2ee0cdcc..c9caccd4c3 100644
--- a/gui/mplayer/gtk/eq.c
+++ b/gui/mplayer/gtk/eq.c
@@ -19,7 +19,7 @@
#include "libmpdemux/demuxer.h"
#include "libmpdemux/stheader.h"
#include "libmpcodecs/dec_video.h"
-#include "../widgets.h"
+#include "gui/mplayer/widgets.h"
#include "eq.h"
#include "gtk_common.h"
diff --git a/gui/mplayer/gtk/fs.c b/gui/mplayer/gtk/fs.c
index da44fb3e33..c0b88e417c 100644
--- a/gui/mplayer/gtk/fs.c
+++ b/gui/mplayer/gtk/fs.c
@@ -7,7 +7,7 @@
#include <unistd.h>
#include "config.h"
-#include "../gmplayer.h"
+#include "gui/mplayer/gmplayer.h"
#include "gui/mplayer/pixmaps/up.xpm"
#include "gui/mplayer/pixmaps/dir.xpm"
@@ -18,7 +18,7 @@
#include "help_mp.h"
#include "stream/stream.h"
-#include "../widgets.h"
+#include "gui/mplayer/widgets.h"
#include "fs.h"
#include "opts.h"
#include "gtk_common.h"
diff --git a/gui/mplayer/gtk/gtk_url.c b/gui/mplayer/gtk/gtk_url.c
index c2d1f3fd9f..f71300aed6 100644
--- a/gui/mplayer/gtk/gtk_url.c
+++ b/gui/mplayer/gtk/gtk_url.c
@@ -13,8 +13,8 @@
#include "gtk_common.h"
#include "gui/interface.h"
#include "gui/app.h"
-#include "../widgets.h"
-#include "../gmplayer.h"
+#include "gui/mplayer/gmplayer.h"
+#include "gui/mplayer/widgets.h"
#include "help_mp.h"
GtkWidget * URL = NULL;
diff --git a/gui/mplayer/gtk/mb.c b/gui/mplayer/gtk/mb.c
index 52092ed936..c891f5033c 100644
--- a/gui/mplayer/gtk/mb.c
+++ b/gui/mplayer/gtk/mb.c
@@ -5,7 +5,7 @@
#include "../pixmaps/error.xpm"
#include "../pixmaps/warning.xpm"
-#include "../widgets.h"
+#include "gui/mplayer/widgets.h"
#include "mb.h"
#include "gtk_common.h"
diff --git a/gui/mplayer/gtk/menu.c b/gui/mplayer/gtk/menu.c
index 49bd511800..0698c68e6b 100644
--- a/gui/mplayer/gtk/menu.c
+++ b/gui/mplayer/gtk/menu.c
@@ -9,13 +9,13 @@
#include "mixer.h"
#include "menu.h"
-#include "../widgets.h"
-#include "../gmplayer.h"
+#include "gui/mplayer/widgets.h"
+#include "gui/mplayer/gmplayer.h"
#include "gui/app.h"
#include "stream/stream.h"
-#include "../libmpdemux/demuxer.h"
-#include "../libmpdemux/stheader.h"
+#include "libmpdemux/demuxer.h"
+#include "libmpdemux/stheader.h"
#include "../pixmaps/ab.xpm"
#include "../pixmaps/half.xpm"
diff --git a/gui/mplayer/gtk/opts.c b/gui/mplayer/gtk/opts.c
index 32c799b520..2662d722ea 100644
--- a/gui/mplayer/gtk/opts.c
+++ b/gui/mplayer/gtk/opts.c
@@ -22,7 +22,7 @@
#include "gui/app.h"
#include "gui/cfg.h"
#include "gui/interface.h"
-#include "../widgets.h"
+#include "gui/mplayer/widgets.h"
#include "opts.h"
#include "fs.h"
#include "gtk_common.h"
diff --git a/gui/mplayer/gtk/pl.c b/gui/mplayer/gtk/pl.c
index 301d6238cc..742b3c84d7 100644
--- a/gui/mplayer/gtk/pl.c
+++ b/gui/mplayer/gtk/pl.c
@@ -15,7 +15,7 @@
#include "stream/stream.h"
#include "gui/interface.h"
-#include "../widgets.h"
+#include "gui/mplayer/widgets.h"
#include "pl.h"
#include "gtk_common.h"
diff --git a/gui/mplayer/gtk/sb.c b/gui/mplayer/gtk/sb.c
index 8d48358c81..e22fd3f65a 100644
--- a/gui/mplayer/gtk/sb.c
+++ b/gui/mplayer/gtk/sb.c
@@ -13,7 +13,7 @@
#include "gui/app.h"
#include "help_mp.h"
-#include "../widgets.h"
+#include "gui/mplayer/widgets.h"
GtkWidget * SkinList = NULL;
char * sbSelectedSkin=NULL;