summaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-03-14 16:46:13 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-03-14 16:46:13 +0000
commit37ea342f8576e90cf024f746d86117b195f34095 (patch)
treea029849d002377ae87c088bb8799883a98f412c2 /gui
parent0bd0d07dd78dc3a2e87d9b72da49871b4879fd3f (diff)
downloadmpv-37ea342f8576e90cf024f746d86117b195f34095.tar.bz2
mpv-37ea342f8576e90cf024f746d86117b195f34095.tar.xz
#include config.h before all other headers.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26235 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'gui')
-rw-r--r--gui/mplayer/gtk/about.c3
-rw-r--r--gui/mplayer/gtk/eq.c2
-rw-r--r--gui/mplayer/gtk/fs.c2
-rw-r--r--gui/mplayer/gtk/mb.c3
-rw-r--r--gui/mplayer/gtk/sb.c2
-rw-r--r--gui/mplayer/menu.c2
-rw-r--r--gui/mplayer/mw.c2
-rw-r--r--gui/mplayer/pb.c2
-rw-r--r--gui/mplayer/play.c2
-rw-r--r--gui/mplayer/widgets.c2
10 files changed, 10 insertions, 12 deletions
diff --git a/gui/mplayer/gtk/about.c b/gui/mplayer/gtk/about.c
index 47a2b993df..5ae73d806a 100644
--- a/gui/mplayer/gtk/about.c
+++ b/gui/mplayer/gtk/about.c
@@ -1,6 +1,5 @@
-
-#include "app.h"
#include "config.h"
+#include "app.h"
#include "help_mp.h"
#include "mplayer/pixmaps/about.xpm"
diff --git a/gui/mplayer/gtk/eq.c b/gui/mplayer/gtk/eq.c
index 57901e86d0..48279534d8 100644
--- a/gui/mplayer/gtk/eq.c
+++ b/gui/mplayer/gtk/eq.c
@@ -9,9 +9,9 @@
#include <gdk/gdkkeysyms.h>
#include <gtk/gtk.h>
+#include "config.h"
#include "app.h"
#include "cfg.h"
-#include "config.h"
#include "help_mp.h"
#include "libaf/equalizer.h"
#include "libvo/video_out.h"
diff --git a/gui/mplayer/gtk/fs.c b/gui/mplayer/gtk/fs.c
index 437b0d9efa..0cbffbe46a 100644
--- a/gui/mplayer/gtk/fs.c
+++ b/gui/mplayer/gtk/fs.c
@@ -6,6 +6,7 @@
#include <glob.h>
#include <unistd.h>
+#include "config.h"
#include "../gmplayer.h"
#include "mplayer/pixmaps/up.xpm"
@@ -14,7 +15,6 @@
#include "app.h"
#include "interface.h"
-#include "config.h"
#include "help_mp.h"
#include "stream/stream.h"
diff --git a/gui/mplayer/gtk/mb.c b/gui/mplayer/gtk/mb.c
index db2ec24749..3938830ea8 100644
--- a/gui/mplayer/gtk/mb.c
+++ b/gui/mplayer/gtk/mb.c
@@ -1,6 +1,5 @@
-
-#include "app.h"
#include "config.h"
+#include "app.h"
#include "help_mp.h"
#include "../pixmaps/error.xpm"
diff --git a/gui/mplayer/gtk/sb.c b/gui/mplayer/gtk/sb.c
index d5e3e4bb20..37c7320309 100644
--- a/gui/mplayer/gtk/sb.c
+++ b/gui/mplayer/gtk/sb.c
@@ -6,11 +6,11 @@
#include <stdlib.h>
#include <stdio.h>
+#include "config.h"
#include "sb.h"
#include "gtk_common.h"
#include "app.h"
-#include "config.h"
#include "help_mp.h"
#include "../widgets.h"
diff --git a/gui/mplayer/menu.c b/gui/mplayer/menu.c
index f6887c4089..a2f966c746 100644
--- a/gui/mplayer/menu.c
+++ b/gui/mplayer/menu.c
@@ -3,9 +3,9 @@
#include <stdio.h>
#include <inttypes.h>
+#include "../config.h"
#include "app.h"
#include "gmplayer.h"
-#include "../config.h"
#include "../help_mp.h"
#include "../mp_msg.h"
diff --git a/gui/mplayer/mw.c b/gui/mplayer/mw.c
index f68a9b2b7e..5252117092 100644
--- a/gui/mplayer/mw.c
+++ b/gui/mplayer/mw.c
@@ -8,13 +8,13 @@
#include <unistd.h>
#include <string.h>
+#include "../config.h"
#include "gmplayer.h"
#include "app.h"
#include "skin/font.h"
#include "skin/skin.h"
#include "wm/ws.h"
-#include "../config.h"
#include "../help_mp.h"
#include "../libvo/x11_common.h"
#include "../libvo/fastmemcpy.h"
diff --git a/gui/mplayer/pb.c b/gui/mplayer/pb.c
index 93e89c3f70..6249618fc2 100644
--- a/gui/mplayer/pb.c
+++ b/gui/mplayer/pb.c
@@ -8,12 +8,12 @@
#include <unistd.h>
#include <string.h>
+#include "../config.h"
#include "app.h"
#include "skin/font.h"
#include "skin/skin.h"
#include "wm/ws.h"
-#include "../config.h"
#include "../help_mp.h"
#include "../libvo/x11_common.h"
#include "../libvo/fastmemcpy.h"
diff --git a/gui/mplayer/play.c b/gui/mplayer/play.c
index 6a15186a74..c77841a03d 100644
--- a/gui/mplayer/play.c
+++ b/gui/mplayer/play.c
@@ -7,9 +7,9 @@
#include <unistd.h>
#include <signal.h>
+#include "../config.h"
#include "wm/ws.h"
#include "wm/wsxdnd.h"
-#include "../config.h"
#include "../help_mp.h"
#include "../libvo/x11_common.h"
#include "../libvo/video_out.h"
diff --git a/gui/mplayer/widgets.c b/gui/mplayer/widgets.c
index 3595966223..834870d5db 100644
--- a/gui/mplayer/widgets.c
+++ b/gui/mplayer/widgets.c
@@ -15,6 +15,7 @@
#include <gdk/gdk.h>
#include <gtk/gtk.h>
+#include "../config.h"
#include "widgets.h"
#include "app.h"
#include "wm/ws.h"
@@ -24,7 +25,6 @@
#include "play.h"
#include "gtk/fs.h"
-#include "../config.h"
#include "../help_mp.h"
#include "../mp_msg.h"