diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-02-21 00:10:33 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-02-21 00:10:33 +0000 |
commit | 2fa781bcfefbf403d9f3e6a0b7ebf62517ff1f51 (patch) | |
tree | af5347aa6a0ae55a7a90f5e7903403b81c978544 /gui | |
parent | 71e35ac612e4a902cea29b92988bb9cb3f34049c (diff) |
Consistently use filename as multiple inclusion guard.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26043 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'gui')
-rw-r--r-- | gui/mplayer/gtk/gtk_common.h | 6 | ||||
-rw-r--r-- | gui/mplayer/gui_common.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/gui/mplayer/gtk/gtk_common.h b/gui/mplayer/gtk/gtk_common.h index f96b9d2bb5..e358a7c30d 100644 --- a/gui/mplayer/gtk/gtk_common.h +++ b/gui/mplayer/gtk/gtk_common.h @@ -1,6 +1,6 @@ -#ifndef GUI_COMMON_H -#define GUI_COMMON_H +#ifndef GUI_GTK_COMMON_H +#define GUI_GTK_COMMON_H #include <gdk/gdkkeysyms.h> #include <gtk/gtk.h> @@ -21,4 +21,4 @@ extern GtkWidget * AddVScaler( GtkAdjustment * adj,GtkWidget * parent,int digit extern GtkWidget * AddComboBox( GtkWidget * parent ); extern void WidgetDestroy( GtkWidget * widget,GtkWidget ** widget_pointer ); -#endif /* GUI_COMMON_H */ +#endif /* GUI_GTK_COMMON_H */ diff --git a/gui/mplayer/gui_common.h b/gui/mplayer/gui_common.h index 661ead64c3..2aec358480 100644 --- a/gui/mplayer/gui_common.h +++ b/gui/mplayer/gui_common.h @@ -1,6 +1,6 @@ -#ifndef GUI_COMMON_H -#define GUI_COMMON_H +#ifndef GUI_GUI_COMMON_H +#define GUI_GUI_COMMON_H #include <stdlib.h> #include <stdio.h> @@ -18,4 +18,4 @@ extern void PutImage( txSample * bf,int x,int y,int max,int ofs ); extern void SimplePotmeterPutImage( txSample * bf,int x,int y,float frac ); extern void Render( wsTWindow * window,wItem * Items,int nrItems,char * db,int size ); -#endif /* GUI_COMMON_H */ +#endif /* GUI_GUI_COMMON_H */ |