[Xfce4-commits] [apps/parole] 01/01: Fix most cpplint header guard notices

noreply at xfce.org noreply at xfce.org
Sun May 28 04:43:57 CEST 2017


This is an automated email from the git hooks/post-receive script.

b   l   u   e   s   a   b   r   e       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository apps/parole.

commit b3a1cdd1ebf457f76c4e3b0ba74e6e6b4e2395f7
Author: Sean Davis <smd.seandavis at gmail.com>
Date:   Sat May 27 22:43:50 2017 -0400

    Fix most cpplint header guard notices
---
 data/mime/mime-type-include.sh       | 4 ++++
 src/Makefile.am                      | 4 ++--
 src/common/parole-common.h           | 6 +++---
 src/common/parole-rc-utils.h         | 6 +++---
 src/common/parole-screensaver.h      | 6 +++---
 src/dbus/parole-dbus.h               | 6 +++---
 src/gst/Makefile.am                  | 4 ++--
 src/gst/parole-gst.h                 | 6 +++---
 src/misc/Makefile.am                 | 4 ++--
 src/misc/parole-debug.h              | 6 +++---
 src/misc/parole-file.h               | 6 +++---
 src/misc/parole-filters.h            | 6 +++---
 src/misc/parole-pl-parser.h          | 6 +++---
 src/misc/parole-provider-player.h    | 6 +++---
 src/misc/parole-provider-plugin.h    | 6 +++---
 src/misc/parole-stream.h             | 6 +++---
 src/misc/parole.h.in                 | 6 +++---
 src/parole-about.h                   | 6 +++---
 src/parole-builder.h                 | 6 +++---
 src/parole-button.h                  | 6 +++---
 src/parole-clutter.h                 | 6 +++---
 src/parole-conf-dialog.h             | 6 +++---
 src/parole-conf.h                    | 6 +++---
 src/parole-disc.h                    | 6 +++---
 src/parole-mediachooser.h            | 6 +++---
 src/parole-medialist.h               | 6 +++---
 src/parole-module.h                  | 6 +++---
 src/parole-open-location.h           | 6 +++---
 src/parole-player.h                  | 6 +++---
 src/parole-plugin-player.h           | 6 +++---
 src/parole-plugins-manager.h         | 6 +++---
 src/parole-shortcuts.h               | 6 +++---
 src/parole-subtitle-encoding.h       | 6 +++---
 src/parole-utils.h                   | 6 +++---
 src/parole-vis.h                     | 6 +++---
 src/plugins/mpris2/mpris2-provider.h | 6 +++---
 src/plugins/notify/notify-provider.h | 6 +++---
 src/plugins/sample/sample-provider.h | 6 +++---
 src/plugins/tray/tray-provider.h     | 6 +++---
 39 files changed, 115 insertions(+), 111 deletions(-)

diff --git a/data/mime/mime-type-include.sh b/data/mime/mime-type-include.sh
index f702a7f..ad649ce 100755
--- a/data/mime/mime-type-include.sh
+++ b/data/mime/mime-type-include.sh
@@ -10,6 +10,9 @@ MIMETYPES=`grep -v ^# $1 | grep -v x-content/`
 
 echo "/* generated with mime-types-include.sh, don't edit */"
 
+echo "#ifndef DATA_MIME_PAROLE_MIME_TYPES_H_"
+echo "#define DATA_MIME_PAROLE_MIME_TYPES_H_"
+
 get_audio_mimetypes $1;
 
 echo "char *audio_mime_types[] = {"
@@ -28,3 +31,4 @@ done
 
 echo "};"
 
+echo "#endif /* DATA_MIME_PAROLE_MIME_TYPES_H_ */"
diff --git a/src/Makefile.am b/src/Makefile.am
index 21762bf..2dd0736 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -126,10 +126,10 @@ enum-gtypes.h: stamp-enum-gtypes.h
 	@true
 stamp-enum-gtypes.h: $(parole_glib_enum_headers) Makefile
 	( cd $(srcdir) && glib-mkenums \
-		--fhead "#ifndef __ENUM_GTYPES_H__\n#define __ENUM_GTYPES_H__\n#include <glib-object.h>\nG_BEGIN_DECLS\n" \
+		--fhead "#ifndef SRC_ENUM_GTYPES_H_\n#define SRC_ENUM_GTYPES_H_\n#include <glib-object.h>\nG_BEGIN_DECLS\n" \
 		--fprod "/* enumerations from \"@filename@\" */\n" \
 		--vhead "GType @enum_name at _get_type (void);\n#define ENUM_GTYPE_ at ENUMSHORT@ (@enum_name at _get_type())\n" \
-		--ftail "G_END_DECLS\n\n#endif /* __ENUM_GTYPES_H__ */" \
+		--ftail "G_END_DECLS\n\n#endif /* SRC_ENUM_GTYPES_H_ */" \
 		$(parole_glib_enum_headers) ) > xgen-enum.h \
 	&& (cmp -s xgen-enum.h enum-gtypes.h || cp xgen-enum.h enum-gtypes.h) \
 	&& rm -f xgen-enum.h \
diff --git a/src/common/parole-common.h b/src/common/parole-common.h
index 1b6bca5..d5ce7a1 100644
--- a/src/common/parole-common.h
+++ b/src/common/parole-common.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_COMMON_H_
-#define __PAROLE_COMMON_H_
+#ifndef SRC_COMMON_PAROLE_COMMON_H_
+#define SRC_COMMON_PAROLE_COMMON_H_
 
 #include <gtk/gtk.h>
 #include <gdk/gdk.h>
@@ -45,4 +45,4 @@ void        parole_window_normal_cursor     (GdkWindow *window);
 
 
 
-#endif /* __PAROLE_COMMON_ */
+#endif /* SRC_COMMON_PAROLE_COMMON_H_ */
diff --git a/src/common/parole-rc-utils.h b/src/common/parole-rc-utils.h
index c59342c..348cd2a 100644
--- a/src/common/parole-rc-utils.h
+++ b/src/common/parole-rc-utils.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __RC_UTILS_
-#define __RC_UTILS_
+#ifndef SRC_COMMON_PAROLE_RC_UTILS_H_
+#define SRC_COMMON_PAROLE_RC_UTILS_H_
 
 #include <libxfce4util/libxfce4util.h>
 
@@ -47,4 +47,4 @@ void      parole_clear_history_file       (void);
 
 void      parole_clear_history_file_full  (const gchar *relpath);
 
-#endif /* __RC_UTILS_ */
+#endif /* SRC_COMMON_PAROLE_RC_UTILS_H_ */
diff --git a/src/common/parole-screensaver.h b/src/common/parole-screensaver.h
index f5ac4a9..f50c74e 100644
--- a/src/common/parole-screensaver.h
+++ b/src/common/parole-screensaver.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_SCREEN_SAVER_H
-#define __PAROLE_SCREEN_SAVER_H
+#ifndef SRC_COMMON_PAROLE_SCREENSAVER_H_
+#define SRC_COMMON_PAROLE_SCREENSAVER_H_
 
 #include <glib-object.h>
 #include <gtk/gtk.h>
@@ -53,4 +53,4 @@ void                parole_screen_saver_uninhibit   (ParoleScreenSaver *saver, G
 
 G_END_DECLS
 
-#endif /* __PAROLE_SCREEN_SAVER_H */
+#endif /* SRC_COMMON_PAROLE_SCREENSAVER_H_ */
diff --git a/src/dbus/parole-dbus.h b/src/dbus/parole-dbus.h
index 1e6f227..073a8e6 100644
--- a/src/dbus/parole-dbus.h
+++ b/src/dbus/parole-dbus.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_DBUS_H_
-#define __PAROLE_DBUS_H_
+#ifndef SRC_DBUS_PAROLE_DBUS_H_
+#define SRC_DBUS_PAROLE_DBUS_H_
 
 #include <dbus/dbus-glib.h>
 
@@ -44,4 +44,4 @@ gboolean         parole_dbus_register_name  (const gchar *name);
 
 gboolean         parole_dbus_release_name   (const gchar *name);
 
-#endif /* __PAROLE_DBUS_ */
+#endif /* SRC_DBUS_PAROLE_DBUS_H_ */
diff --git a/src/gst/Makefile.am b/src/gst/Makefile.am
index 805d431..cd08f15 100644
--- a/src/gst/Makefile.am
+++ b/src/gst/Makefile.am
@@ -53,10 +53,10 @@ gst-enum-types.h: stamp-enum-types.h
 	@true
 stamp-enum-types.h: $(parole_glib_enum_headers) Makefile
 	( cd $(srcdir) && glib-mkenums \
-		--fhead "#ifndef __GST_ENUM_TYPE_H__\n#define __GST_ENUM_TYPE_H__\n#include <glib-object.h>\nG_BEGIN_DECLS\n" \
+		--fhead "#ifndef SRC_GST_GST_ENUM_TYPES_H_\n#define SRC_GST_GST_ENUM_TYPES_H_\n#include <glib-object.h>\nG_BEGIN_DECLS\n" \
 		--fprod "/* enumerations from \"@filename@\" */\n" \
 		--vhead "GType @enum_name at _get_type (void);\n#define GST_ENUM_TYPE_ at ENUMSHORT@ (@enum_name at _get_type())\n" \
-		--ftail "G_END_DECLS\n\n#endif /* __GST_ENUM_TYPE_H__ */" \
+		--ftail "G_END_DECLS\n\n#endif /* SRC_GST_GST_ENUM_TYPES_H_ */" \
 		$(parole_glib_enum_headers) ) > xgen-enum.h \
 	&& (cmp -s xgen-enum.h gst-enum-types.h || cp xgen-enum.h gst-enum-types.h) \
 	&& rm -f xgen-enum.h \
diff --git a/src/gst/parole-gst.h b/src/gst/parole-gst.h
index 75a7605..baef6e3 100644
--- a/src/gst/parole-gst.h
+++ b/src/gst/parole-gst.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_GST_H
-#define __PAROLE_GST_H
+#ifndef SRC_GST_PAROLE_GST_H_
+#define SRC_GST_PAROLE_GST_H_
 
 #include <glib-object.h>
 #include <gst/gst.h>
@@ -183,4 +183,4 @@ const ParoleStream
 
 G_END_DECLS
 
-#endif /* __PAROLE_GST_H */
+#endif /* SRC_GST_PAROLE_GST_H_ */
diff --git a/src/misc/Makefile.am b/src/misc/Makefile.am
index dfe8d00..76c1865 100644
--- a/src/misc/Makefile.am
+++ b/src/misc/Makefile.am
@@ -74,10 +74,10 @@ parole-enum-types.h: stamp-enum-types.h
 	@true
 stamp-enum-types.h: $(parole_glib_enum_headers) Makefile
 	( cd $(srcdir) && glib-mkenums \
-		--fhead "#ifndef __PAROLE_ENUM_TYPE_H__\n#define __PAROLE_ENUM_TYPE_H__\n#include <glib-object.h>\nG_BEGIN_DECLS\n" \
+		--fhead "#ifndef SRC_MISC_PAROLE_ENUM_TYPES_H_\n#define SRC_MISC_PAROLE_ENUM_TYPES_H_\n#include <glib-object.h>\nG_BEGIN_DECLS\n" \
 		--fprod "/* enumerations from \"@filename@\" */\n" \
 		--vhead "GType @enum_name at _get_type (void);\n#define PAROLE_ENUM_TYPE_ at ENUMSHORT@ (@enum_name at _get_type())\n" \
-		--ftail "G_END_DECLS\n\n#endif /* __PAROLE_ENUM_TYPE_H__ */" \
+		--ftail "G_END_DECLS\n\n#endif /* SRC_MISC_PAROLE_ENUM_TYPES_H_ */" \
 		$(parole_glib_enum_headers) ) > xgen-enum.h \
 	&& (cmp -s xgen-enum.h parole-enum-types.h || cp xgen-enum.h parole-enum-types.h) \
 	&& rm -f xgen-enum.h \
diff --git a/src/misc/parole-debug.h b/src/misc/parole-debug.h
index e59aa90..c8d9838 100644
--- a/src/misc/parole-debug.h
+++ b/src/misc/parole-debug.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_DEBUG_H
-#define __PAROLE_DEBUG_H
+#ifndef SRC_MISC_PAROLE_DEBUG_H_
+#define SRC_MISC_PAROLE_DEBUG_H_
 
 #ifdef HAVE_CONFIG_H
 #include <config.h>
@@ -65,4 +65,4 @@ void        parole_debug_enum_full   (const gchar *func,
 
 G_END_DECLS
 
-#endif /* __PAROLE_DEBUG_H */
+#endif /* SRC_MISC_PAROLE_DEBUG_H_ */
diff --git a/src/misc/parole-file.h b/src/misc/parole-file.h
index 2720ea5..2d9d4f0 100644
--- a/src/misc/parole-file.h
+++ b/src/misc/parole-file.h
@@ -24,8 +24,8 @@
 #error "Only <parole.h> can be included directly."
 #endif
 
-#ifndef __PAROLE_MEDIA_FILE_H
-#define __PAROLE_MEDIA_FILE_H
+#ifndef SRC_MISC_PAROLE_FILE_H_
+#define SRC_MISC_PAROLE_FILE_H_
 
 #include <glib-object.h>
 
@@ -88,4 +88,4 @@ G_CONST_RETURN *parole_file_get_custom_subtitles    (const ParoleFile *file) G_G
 
 G_END_DECLS
 
-#endif /* __PAROLE_MEDIA_FILE_H */
+#endif /* SRC_MISC_PAROLE_FILE_H_ */
diff --git a/src/misc/parole-filters.h b/src/misc/parole-filters.h
index 2820c68..5740faf 100644
--- a/src/misc/parole-filters.h
+++ b/src/misc/parole-filters.h
@@ -24,8 +24,8 @@
 #error "Only <parole.h> can be included directly."
 #endif
 
-#ifndef __PAROLE_FILTERS_H
-#define __PAROLE_FILTERS_H
+#ifndef SRC_MISC_PAROLE_FILTERS_H_
+#define SRC_MISC_PAROLE_FILTERS_H_
 
 #include <gtk/gtk.h>
 
@@ -47,4 +47,4 @@ gboolean            parole_file_filter                          (GtkFileFilter *
 
 G_END_DECLS
 
-#endif /* PAROLE_FILTERS_H */
+#endif /* SRC_MISC_PAROLE_FILTERS_H_ */
diff --git a/src/misc/parole-pl-parser.h b/src/misc/parole-pl-parser.h
index ef56e31..3192941 100644
--- a/src/misc/parole-pl-parser.h
+++ b/src/misc/parole-pl-parser.h
@@ -24,8 +24,8 @@
 #error "Only <parole.h> can be included directly."
 #endif
 
-#ifndef __PAROLE_PL_PARSER_H
-#define __PAROLE_PL_PARSER_H
+#ifndef SRC_MISC_PAROLE_PL_PARSER_H_
+#define SRC_MISC_PAROLE_PL_PARSER_H_
 
 #include <glib.h>
 
@@ -68,4 +68,4 @@ gboolean            parole_pl_parser_save_from_files                (GSList *fil
 
 G_END_DECLS
 
-#endif /* __PAROLE_PL_PARSER_H */
+#endif /* SRC_MISC_PAROLE_PL_PARSER_H_ */
diff --git a/src/misc/parole-provider-player.h b/src/misc/parole-provider-player.h
index fabd1e7..745d503 100644
--- a/src/misc/parole-provider-player.h
+++ b/src/misc/parole-provider-player.h
@@ -24,8 +24,8 @@
 #error "Only <parole.h> can be included directly."
 #endif
 
-#ifndef __PAROLE_PROVIDER_PLAYER_H__
-#define __PAROLE_PROVIDER_PLAYER_H__
+#ifndef SRC_MISC_PAROLE_PROVIDER_PLAYER_H_
+#define SRC_MISC_PAROLE_PROVIDER_PLAYER_H_
 
 #include <gtk/gtk.h>
 #include "parole-stream.h"
@@ -159,4 +159,4 @@ gboolean    parole_provider_player_set_fullscreen(ParoleProviderPlayer *player,
 
 G_END_DECLS
 
-#endif /* __PAROLE_PLUGIN_IFACE_H__ */
+#endif /* SRC_MISC_PAROLE_PROVIDER_PLAYER_H_ */
diff --git a/src/misc/parole-provider-plugin.h b/src/misc/parole-provider-plugin.h
index 531fb84..2957b0a 100644
--- a/src/misc/parole-provider-plugin.h
+++ b/src/misc/parole-provider-plugin.h
@@ -24,8 +24,8 @@
 #error "Only <parole.h> can be included directly."
 #endif
 
-#ifndef __PAROLE_PROVIDER_PLUGIN_H__
-#define __PAROLE_PROVIDER_PLUGIN_H__
+#ifndef SRC_MISC_PAROLE_PROVIDER_PLUGIN_H_
+#define SRC_MISC_PAROLE_PROVIDER_PLUGIN_H_
 
 #include <gtk/gtk.h>
 #include <src/misc/parole-stream.h>
@@ -68,4 +68,4 @@ void             parole_provider_plugin_set_player  (ParoleProviderPlugin *provi
 
 G_END_DECLS
 
-#endif /* __PAROLE_PLUGIN_IFACE_H__ */
+#endif /* SRC_MISC_PAROLE_PROVIDER_PLUGIN_H_ */
diff --git a/src/misc/parole-stream.h b/src/misc/parole-stream.h
index 6c7d748..32db9e7 100644
--- a/src/misc/parole-stream.h
+++ b/src/misc/parole-stream.h
@@ -24,8 +24,8 @@
 #error "Only <parole.h> can be included directly."
 #endif
 
-#ifndef __PAROLE_STREAM_H
-#define __PAROLE_STREAM_H
+#ifndef SRC_MISC_PAROLE_STREAM_H_
+#define SRC_MISC_PAROLE_STREAM_H_
 
 #include <glib-object.h>
 #include <gdk/gdkx.h>
@@ -112,4 +112,4 @@ void                    parole_stream_init_properties   (ParoleStream *stream);
 
 G_END_DECLS
 
-#endif /* __PAROLE_STREAM_H */
+#endif /* SRC_MISC_PAROLE_STREAM_H_ */
diff --git a/src/misc/parole.h.in b/src/misc/parole.h.in
index d3a4fa3..0ff82e8 100644
--- a/src/misc/parole.h.in
+++ b/src/misc/parole.h.in
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_H_
-#define __PAROLE_H_
+#ifndef SRC_MISC_PAROLE_H_
+#define SRC_MISC_PAROLE_H_
 
 #define __PAROLE_H_INSIDE__
 
@@ -187,4 +187,4 @@ type_name##_register_type (ParoleProviderPlugin *provider_plugin_def) 		\
 
 #undef __PAROLE_H_INSIDE__
 
-#endif /*__PAROLE_H_*/
+#endif /* SRC_MISC_PAROLE_H_ */
diff --git a/src/parole-about.h b/src/parole-about.h
index 0df16c7..8edadd0 100644
--- a/src/parole-about.h
+++ b/src/parole-about.h
@@ -20,11 +20,11 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_ABOUT_H
-#define __PAROLE_ABOUT_H
+#ifndef SRC_PAROLE_ABOUT_H_
+#define SRC_PAROLE_ABOUT_H_
 
 #include <gtk/gtk.h>
 
 void        parole_about    (GtkWindow *parent);
 
-#endif /* __PAROLE_ABOUT_H */
+#endif /* SRC_PAROLE_ABOUT_H_ */
diff --git a/src/parole-builder.h b/src/parole-builder.h
index a12794a..78a214e 100644
--- a/src/parole-builder.h
+++ b/src/parole-builder.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_BUILDER_H
-#define __PAROLE_BUILDER_H
+#ifndef SRC_PAROLE_BUILDER_H_
+#define SRC_PAROLE_BUILDER_H_
 
 #include <glib-object.h>
 #include <gtk/gtk.h>
@@ -35,4 +35,4 @@ GtkBuilder      *parole_builder_new_from_string     (const gchar *ui,
 
 G_END_DECLS
 
-#endif /* __PAROLE_BUILDER_H */
+#endif /* SRC_PAROLE_BUILDER_H_ */
diff --git a/src/parole-button.h b/src/parole-button.h
index 0d45204..f9ea97d 100644
--- a/src/parole-button.h
+++ b/src/parole-button.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_BUTTON_H
-#define __PAROLE_BUTTON_H
+#ifndef SRC_PAROLE_BUTTON_H_
+#define SRC_PAROLE_BUTTON_H_
 
 #include <glib-object.h>
 
@@ -70,4 +70,4 @@ G_END_DECLS
 
 #endif /*HAVE_XF86_KEYSYM*/
 
-#endif /* __PAROLE_BUTTON_H */
+#endif /* SRC_PAROLE_BUTTON_H_ */
diff --git a/src/parole-clutter.h b/src/parole-clutter.h
index 2887e64..34fc585 100644
--- a/src/parole-clutter.h
+++ b/src/parole-clutter.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_CLUTTER_H
-#define __PAROLE_CLUTTER_H
+#ifndef SRC_PAROLE_CLUTTER_H_
+#define SRC_PAROLE_CLUTTER_H_
 
 #include <glib-object.h>
 #include <gst/gst.h>
@@ -66,4 +66,4 @@ parole_clutter_set_video_dimensions           (ParoleClutter *clutter,
 
 G_END_DECLS
 
-#endif /* __PAROLE_CLUTTER_H */
+#endif /* SRC_PAROLE_CLUTTER_H_ */
diff --git a/src/parole-conf-dialog.h b/src/parole-conf-dialog.h
index dae5193..a4c7729 100644
--- a/src/parole-conf-dialog.h
+++ b/src/parole-conf-dialog.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_CONF_DIALOG_H
-#define __PAROLE_CONF_DIALOG_H
+#ifndef SRC_PAROLE_CONF_DIALOG_H_
+#define SRC_PAROLE_CONF_DIALOG_H_
 
 #include <glib-object.h>
 #include <gtk/gtk.h>
@@ -55,4 +55,4 @@ void                    parole_conf_dialog_open         (ParoleConfDialog *self,
 
 G_END_DECLS
 
-#endif /* __PAROLE_CONF_DIALOG_H */
+#endif /* SRC_PAROLE_CONF_DIALOG_H_ */
diff --git a/src/parole-conf.h b/src/parole-conf.h
index 7a95834..0f96cdc 100644
--- a/src/parole-conf.h
+++ b/src/parole-conf.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_CONF_H
-#define __PAROLE_CONF_H
+#ifndef SRC_PAROLE_CONF_H_
+#define SRC_PAROLE_CONF_H_
 
 #include <glib-object.h>
 
@@ -55,4 +55,4 @@ void                     parole_conf_xfconf_init_failed (void);
 
 G_END_DECLS;
 
-#endif /* __PAROLE_CONF_H */
+#endif /* SRC_PAROLE_CONF_H_ */
diff --git a/src/parole-disc.h b/src/parole-disc.h
index f31d997..40c3070 100644
--- a/src/parole-disc.h
+++ b/src/parole-disc.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_DISC_H
-#define __PAROLE_DISC_H
+#ifndef SRC_PAROLE_DISC_H_
+#define SRC_PAROLE_DISC_H_
 
 #include <glib-object.h>
 
@@ -72,4 +72,4 @@ ParoleDisc         *parole_disc_new             (void);
 
 G_END_DECLS
 
-#endif /* __PAROLE_DISC_H */
+#endif /* SRC_PAROLE_DISC_H_ */
diff --git a/src/parole-mediachooser.h b/src/parole-mediachooser.h
index d029f86..369a1e7 100644
--- a/src/parole-mediachooser.h
+++ b/src/parole-mediachooser.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_MEDIA_CHOOSER_H
-#define __PAROLE_MEDIA_CHOOSER_H
+#ifndef SRC_PAROLE_MEDIACHOOSER_H_
+#define SRC_PAROLE_MEDIACHOOSER_H_
 
 #include <glib-object.h>
 #include <gtk/gtk.h>
@@ -43,4 +43,4 @@ ParoleMediaChooser      *parole_media_chooser_open_local    (GtkWidget *parent);
 
 G_END_DECLS
 
-#endif /* __PAROLE_MEDIA_CHOOSER_H */
+#endif /* SRC_PAROLE_MEDIACHOOSER_H_ */
diff --git a/src/parole-medialist.h b/src/parole-medialist.h
index 45c2af9..1ec2791 100644
--- a/src/parole-medialist.h
+++ b/src/parole-medialist.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_MEDIA_LIST_H
-#define __PAROLE_MEDIA_LIST_H
+#ifndef SRC_PAROLE_MEDIALIST_H_
+#define SRC_PAROLE_MEDIALIST_H_
 
 #include <gtk/gtk.h>
 #include <src/misc/parole-file.h>
@@ -202,4 +202,4 @@ void parole_media_list_add_dvd (ParoleMediaList *list, gchar *dvd_name);
 
 G_END_DECLS
 
-#endif /* __PAROLE_MEDIA_LIST_H */
+#endif /* SRC_PAROLE_MEDIALIST_H_ */
diff --git a/src/parole-module.h b/src/parole-module.h
index a216226..fe741e3 100644
--- a/src/parole-module.h
+++ b/src/parole-module.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_MODULE_H
-#define __PAROLE_MODULE_H
+#ifndef SRC_PAROLE_MODULE_H_
+#define SRC_PAROLE_MODULE_H_
 
 #include <glib-object.h>
 #include <src/misc/parole.h>
@@ -77,4 +77,4 @@ gboolean                    parole_provider_module_get_is_active   (ParoleProvid
 
 G_END_DECLS
 
-#endif /* __PAROLE_MODULE_H */
+#endif /* SRC_PAROLE_MODULE_H_ */
diff --git a/src/parole-open-location.h b/src/parole-open-location.h
index cf7fbed..674a6cd 100644
--- a/src/parole-open-location.h
+++ b/src/parole-open-location.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_OPEN_LOCATION_H
-#define __PAROLE_OPEN_LOCATION_H
+#ifndef SRC_PAROLE_OPEN_LOCATION_H_
+#define SRC_PAROLE_OPEN_LOCATION_H_
 
 #include <glib-object.h>
 #include <gtk/gtk.h>
@@ -41,4 +41,4 @@ ParoleOpenLocation  *parole_open_location            (GtkWidget *parent);
 
 G_END_DECLS
 
-#endif /* __PAROLE_OPEN_LOCATION_H */
+#endif /* SRC_PAROLE_OPEN_LOCATION_H_ */
diff --git a/src/parole-player.h b/src/parole-player.h
index c56aa5b..9da08d9 100644
--- a/src/parole-player.h
+++ b/src/parole-player.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_PLAYER_H
-#define __PAROLE_PLAYER_H
+#ifndef SRC_PAROLE_PLAYER_H_
+#define SRC_PAROLE_PLAYER_H_
 
 #include <glib-object.h>
 #include "parole-medialist.h"
@@ -84,4 +84,4 @@ GSimpleAction                  *parole_player_get_action(ParolePlayerAction acti
 
 G_END_DECLS
 
-#endif /* __PAROLE_PLAYER_H */
+#endif /* SRC_PAROLE_PLAYER_H_ */
diff --git a/src/parole-plugin-player.h b/src/parole-plugin-player.h
index 81d3f12..237bdef 100644
--- a/src/parole-plugin-player.h
+++ b/src/parole-plugin-player.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_PLUGIN_PLAYER_H
-#define __PAROLE_PLUGIN_PLAYER_H
+#ifndef SRC_PAROLE_PLUGIN_PLAYER_H_
+#define SRC_PAROLE_PLUGIN_PLAYER_H_
 
 #include <glib-object.h>
 
@@ -52,4 +52,4 @@ ParolePluginPlayer             *parole_plugin_player_new             (void);
 
 G_END_DECLS
 
-#endif /* __PAROLE_PLUGIN_PLAYER_H */
+#endif /* SRC_PAROLE_PLUGIN_PLAYER_H_ */
diff --git a/src/parole-plugins-manager.h b/src/parole-plugins-manager.h
index 7d8b976..c6e7eb1 100644
--- a/src/parole-plugins-manager.h
+++ b/src/parole-plugins-manager.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_PLUGINS_MANAGER_H
-#define __PAROLE_PLUGINS_MANAGER_H
+#ifndef SRC_PAROLE_PLUGINS_MANAGER_H_
+#define SRC_PAROLE_PLUGINS_MANAGER_H_
 
 #include <glib-object.h>
 #include <src/misc/parole-provider-player.h>
@@ -62,4 +62,4 @@ void                                parole_plugins_manager_pack       (ParolePlu
 
 G_END_DECLS
 
-#endif /* __PAROLE_PLUGIN_MANAGER_H */
+#endif /* SRC_PAROLE_PLUGINS_MANAGER_H_ */
diff --git a/src/parole-shortcuts.h b/src/parole-shortcuts.h
index 72a952d..5a2b742 100644
--- a/src/parole-shortcuts.h
+++ b/src/parole-shortcuts.h
@@ -18,8 +18,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_SHORTCUTS_H
-#define __PAROLE_SHORTCUTS_H
+#ifndef SRC_PAROLE_SHORTCUTS_H_
+#define SRC_PAROLE_SHORTCUTS_H_
 
 #include <glib-object.h>
 #include <gtk/gtk.h>
@@ -39,4 +39,4 @@ ParoleShortcuts     *parole_shortcuts            (GtkWidget *parent);
 
 G_END_DECLS
 
-#endif /* __PAROLE_SHORTCUTS_H */
+#endif /* SRC_PAROLE_SHORTCUTS_H_ */
diff --git a/src/parole-subtitle-encoding.h b/src/parole-subtitle-encoding.h
index 79fb9c9..4388169 100644
--- a/src/parole-subtitle-encoding.h
+++ b/src/parole-subtitle-encoding.h
@@ -27,8 +27,8 @@
  *
  */
 
-#ifndef PAROLE_SUBTITLE_ENCODING_H
-#define PAROLE_SUBTITLE_ENCODING_H
+#ifndef SRC_PAROLE_SUBTITLE_ENCODING_H_
+#define SRC_PAROLE_SUBTITLE_ENCODING_H_
 
 #include <gtk/gtk.h>
 
@@ -38,4 +38,4 @@ void            parole_subtitle_encoding_set            (GtkComboBox *combo, con
 
 const char     *parole_subtitle_encoding_get_selected   (GtkComboBox *combo);
 
-#endif /* PAROLE_SUBTITLE_ENCODING_H */
+#endif /* SRC_PAROLE_SUBTITLE_ENCODING_H_ */
diff --git a/src/parole-utils.h b/src/parole-utils.h
index 972b6c3..95f70d2 100644
--- a/src/parole-utils.h
+++ b/src/parole-utils.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_UTILS_H_
-#define __PAROLE_UTILS_H_
+#ifndef SRC_PAROLE_UTILS_H_
+#define SRC_PAROLE_UTILS_H_
 
 #include <gtk/gtk.h>
 #include <gdk/gdk.h>
@@ -64,4 +64,4 @@ gboolean    g_simple_toggle_action_get_active   (GSimpleAction *simple);
 void        g_simple_toggle_action_set_active   (GSimpleAction *simple,
                                                  gboolean active);
 
-#endif /* __PAROLE_UTILS_ */
+#endif /* SRC_PAROLE_UTILS_H_ */
diff --git a/src/parole-vis.h b/src/parole-vis.h
index 66a46f2..2e95239 100644
--- a/src/parole-vis.h
+++ b/src/parole-vis.h
@@ -20,12 +20,12 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef __PAROLE_VIS_H_
-#define __PAROLE_VIS_H_
+#ifndef SRC_PAROLE_VIS_H_
+#define SRC_PAROLE_VIS_H_
 
 #include <gst/gst.h>
 #include <glib.h>
 
 GHashTable        *parole_vis_get_plugins           (void);
 
-#endif /* __PAROLE_VIS_H_ */
+#endif /* SRC_PAROLE_VIS_H_ */
diff --git a/src/plugins/mpris2/mpris2-provider.h b/src/plugins/mpris2/mpris2-provider.h
index dc06c42..8b4f432 100644
--- a/src/plugins/mpris2/mpris2-provider.h
+++ b/src/plugins/mpris2/mpris2-provider.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef MPRIS2_PROVIDER_H_
-#define MPRIS2_PROVIDER_H_
+#ifndef SRC_PLUGINS_MPRIS2_MPRIS2_PROVIDER_H_
+#define SRC_PLUGINS_MPRIS2_MPRIS2_PROVIDER_H_
 
 #include <src/misc/parole.h>
 #include <src/parole-conf.h>
@@ -44,4 +44,4 @@ void  mpris2_provider_register_type (ParoleProviderPlugin *plugin);
 
 G_END_DECLS
 
-#endif /*MPRIS2_PROVIDER_H_*/
+#endif /* SRC_PLUGINS_MPRIS2_MPRIS2_PROVIDER_H_ */
diff --git a/src/plugins/notify/notify-provider.h b/src/plugins/notify/notify-provider.h
index 4977a30..10f6965 100644
--- a/src/plugins/notify/notify-provider.h
+++ b/src/plugins/notify/notify-provider.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef NOTIFY_PROVIDER_H_
-#define NOTIFY_PROVIDER_H_
+#ifndef SRC_PLUGINS_NOTIFY_NOTIFY_PROVIDER_H_
+#define SRC_PLUGINS_NOTIFY_NOTIFY_PROVIDER_H_
 
 #include <src/misc/parole.h>
 
@@ -43,4 +43,4 @@ void  notify_provider_register_type (ParoleProviderPlugin *provider);
 
 G_END_DECLS
 
-#endif /*NOTIFY_PROVIDER_H_*/
+#endif /* SRC_PLUGINS_NOTIFY_NOTIFY_PROVIDER_H_ */
diff --git a/src/plugins/sample/sample-provider.h b/src/plugins/sample/sample-provider.h
index 516420d..f5835be 100644
--- a/src/plugins/sample/sample-provider.h
+++ b/src/plugins/sample/sample-provider.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef SAMPLE_PROVIDER_H_
-#define SAMPLE_PROVIDER_H_
+#ifndef SRC_PLUGINS_SAMPLE_SAMPLE_PROVIDER_H_
+#define SRC_PLUGINS_SAMPLE_SAMPLE_PROVIDER_H_
 
 #include <src/misc/parole.h>
 
@@ -43,4 +43,4 @@ void  sample_provider_register_type (ParoleProviderPlugin *plugin);
 
 G_END_DECLS
 
-#endif /*SAMPLE_PROVIDER_H_*/
+#endif /* SRC_PLUGINS_SAMPLE_SAMPLE_PROVIDER_H_ */
diff --git a/src/plugins/tray/tray-provider.h b/src/plugins/tray/tray-provider.h
index eed1351..bbf32d8 100644
--- a/src/plugins/tray/tray-provider.h
+++ b/src/plugins/tray/tray-provider.h
@@ -20,8 +20,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#ifndef TRAY_PROVIDER_H_
-#define TRAY_PROVIDER_H_
+#ifndef SRC_PLUGINS_TRAY_TRAY_PROVIDER_H_
+#define SRC_PLUGINS_TRAY_TRAY_PROVIDER_H_
 
 #include <src/misc/parole.h>
 
@@ -43,4 +43,4 @@ void  tray_provider_register_type   (ParoleProviderPlugin *provider);
 
 G_END_DECLS
 
-#endif /*TRAY_PROVIDER_H_*/
+#endif /* SRC_PLUGINS_TRAY_TRAY_PROVIDER_H_ */

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list