Fix the header guards for finch

Sun, 29 Sep 2019 02:48:18 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Sun, 29 Sep 2019 02:48:18 -0500
changeset 39885
b1b266896ec1
parent 39884
f0ccb5e8dd40
child 39886
ffa3bea4e9a8

Fix the header guards for finch

finch/finch.h file | annotate | diff | comparison | revisions
finch/gntaccount.h file | annotate | diff | comparison | revisions
finch/gntblist.h file | annotate | diff | comparison | revisions
finch/gntconn.h file | annotate | diff | comparison | revisions
finch/gntconv.h file | annotate | diff | comparison | revisions
finch/gntdebug.h file | annotate | diff | comparison | revisions
finch/gntidle.h file | annotate | diff | comparison | revisions
finch/gntlog.h file | annotate | diff | comparison | revisions
finch/gntmedia.h file | annotate | diff | comparison | revisions
finch/gntmenuutil.h file | annotate | diff | comparison | revisions
finch/gntnotify.h file | annotate | diff | comparison | revisions
finch/gntplugin.h file | annotate | diff | comparison | revisions
finch/gntpounce.h file | annotate | diff | comparison | revisions
finch/gntprefs.h file | annotate | diff | comparison | revisions
finch/gntrequest.h file | annotate | diff | comparison | revisions
finch/gntroomlist.h file | annotate | diff | comparison | revisions
finch/gntsound.h file | annotate | diff | comparison | revisions
finch/gntstatus.h file | annotate | diff | comparison | revisions
finch/gntui.h file | annotate | diff | comparison | revisions
finch/gntxfer.h file | annotate | diff | comparison | revisions
--- a/finch/finch.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/finch.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _FINCH_H_
-#define _FINCH_H_
+#ifndef FINCH_H
+#define FINCH_H
 
 /**
  * SECTION:finch
@@ -46,4 +46,5 @@
  */
 gboolean finch_start(int *argc, char ***argv);
 
-#endif
+#endif /* FINCH_H */
+
--- a/finch/gntaccount.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntaccount.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_ACCOUNT_H
-#define _GNT_ACCOUNT_H
+#ifndef FINCH_ACCOUNT_H
+#define FINCH_ACCOUNT_H
+
 /**
  * SECTION:gntaccount
  * @section_id: finch-gntaccount
@@ -72,4 +73,5 @@
  */
 void finch_account_dialog_show(PurpleAccount *account);
 
-#endif
+#endif /* FINCH_ACCOUNT_H */
+
--- a/finch/gntblist.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntblist.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_BLIST_H
-#define _GNT_BLIST_H
+#ifndef FINCH_BLIST_H
+#define FINCH_BLIST_H
+
 /**
  * SECTION:gntblist
  * @section_id: finch-gntblist
@@ -195,4 +196,5 @@
  */
 void finch_blist_manager_add_node(PurpleBlistNode *node);
 
-#endif
+#endif /* FINCH_BLIST_H */
+
--- a/finch/gntconn.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntconn.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_CONN_H
-#define _GNT_CONN_H
+#ifndef FINCH_CONN_H
+#define FINCH_CONN_H
+
 /**
  * SECTION:gntconn
  * @section_id: finch-gntconn
@@ -57,4 +58,5 @@
  */
 void finch_connections_uninit(void);
 
-#endif
+#endif /* FINCH_CONN_H */
+
--- a/finch/gntconv.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntconv.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_CONV_H
-#define _GNT_CONV_H
+#ifndef FINCH_CONV_H
+#define FINCH_CONV_H
+
 /**
  * SECTION:gntconv
  * @section_id: finch-gntconv
@@ -169,4 +170,5 @@
  */
 void finch_conversation_set_info_widget(PurpleConversation *conv, GntWidget *widget);
 
-#endif
+#endif /* FINCH_CONV_H */
+
--- a/finch/gntdebug.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntdebug.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_DEBUG_H
-#define _GNT_DEBUG_H
+#ifndef FINCH_DEBUG_H
+#define FINCH_DEBUG_H
+
 /**
  * SECTION:gntdebug
  * @section_id: finch-gntdebug
@@ -55,4 +56,5 @@
 
 G_END_DECLS
 
-#endif
+#endif /* FINCH_DEBUG_H */
+
--- a/finch/gntidle.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntidle.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_IDLE_H_
-#define _GNT_IDLE_H_
+#ifndef FINCH_IDLE_H
+#define FINCH_IDLE_H
+
 /**
  * SECTION:gntidle
  * @section_id: finch-gntidle
@@ -43,4 +44,5 @@
  */
 PurpleIdleUiOps *finch_idle_get_ui_ops(void);
 
-#endif /* _Finch_IDLE_H_ */
+#endif /* FINCH_IDLE_H */
+
--- a/finch/gntlog.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntlog.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _FINCHLOG_H_
-#define _FINCHLOG_H_
+#ifndef FINCH_LOG_H
+#define FINCH_LOG_H
+
 /**
  * SECTION:gntlog
  * @section_id: finch-gntlog
@@ -93,4 +94,5 @@
  */
 void finch_log_uninit(void);
 
-#endif
+#endif /* FINCH_LOG_H */
+
--- a/finch/gntmedia.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntmedia.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef GNT_MEDIA_H
-#define GNT_MEDIA_H
+#ifndef FINCH_MEDIA_H
+#define FINCH_MEDIA_H
+
 /**
  * SECTION:gntmedia
  * @section_id: finch-gntmedia
@@ -39,5 +40,5 @@
 
 G_END_DECLS
 
-#endif /* GNT_MEDIA_H */
+#endif /* FINCH_MEDIA_H */
 
--- a/finch/gntmenuutil.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntmenuutil.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_MENUUTIL_H
-#define _GNT_MENUUTIL_H
+#ifndef FINCH_MENUUTIL_H
+#define FINCH_MENUUTIL_H
+
 /**
  * SECTION:gntmenuutil
  * @section_id: finch-gntmenuutil
@@ -48,4 +49,5 @@
  */
 void finch_append_menu_action(GntMenu *menu, PurpleActionMenu *action, gpointer ctx);
 
-#endif
+#endif /* FINCH_MENUUTIL_H */
+
--- a/finch/gntnotify.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntnotify.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_NOTIFY_H
-#define _GNT_NOTIFY_H
+#ifndef FINCH_NOTIFY_H
+#define FINCH_NOTIFY_H
+
 /**
  * SECTION:gntnotify
  * @section_id: finch-gntnotify
@@ -57,5 +58,5 @@
  */
 void finch_notify_uninit(void);
 
-#endif
+#endif /* FINCH_NOTIFY_H */
 
--- a/finch/gntplugin.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntplugin.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_PLUGIN_H
-#define _GNT_PLUGIN_H
+#ifndef FINCH_PLUGIN_H
+#define FINCH_PLUGIN_H
+
 /**
  * SECTION:gntplugin
  * @section_id: finch-gntplugin
@@ -125,4 +126,5 @@
  */
 void finch_plugins_save_loaded(void);
 
-#endif
+#endif /* FINCH_PLUGIN_H */
+
--- a/finch/gntpounce.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntpounce.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _FINCHPOUNCE_H_
-#define _FINCHPOUNCE_H_
+#ifndef FINCH_POUNCE_H
+#define FINCH_POUNCE_H
+
 /**
  * SECTION:gntpounce
  * @section_id: finch-gntpounce
@@ -78,4 +79,5 @@
  */
 void finch_pounces_uninit(void);
 
-#endif /* _PURPLE_FINCHPOUNCE_H_ */
+#endif /* FINCH_POUNCE_H */
+
--- a/finch/gntprefs.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntprefs.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_PREFS_H
-#define _GNT_PREFS_H
+#ifndef FINCH_PREFS_H
+#define FINCH_PREFS_H
+
 /**
  * SECTION:gntprefs
  * @section_id: finch-gntprefs
@@ -60,4 +61,5 @@
  */
 void finch_prefs_update_old(void);
 
-#endif
+#endif /* FINCH_PREFS_H */
+
--- a/finch/gntrequest.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntrequest.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef GNT_REQUEST_H
-#define GNT_REQUEST_H
+#ifndef FINCH_REQUEST_H
+#define FINCH_REQUEST_H
 
 /**
  * SECTION:gntrequest
@@ -79,4 +79,5 @@
  */
 GntWidget *finch_request_field_get_widget(PurpleRequestField *field);
 
-#endif /* GNT_REQUEST_H */
+#endif /* FINCH_REQUEST_H */
+
--- a/finch/gntroomlist.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntroomlist.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_ROOMLIST_H
-#define _GNT_ROOMLIST_H
+#ifndef FINCH_ROOMLIST_H
+#define FINCH_ROOMLIST_H
+
 /**
  * SECTION:gntroomlist
  * @section_id: finch-gntroomlist
@@ -64,5 +65,5 @@
  */
 void finch_roomlist_uninit(void);
 
-#endif
+#endif /* FINCH_ROOMLIST_H */
 
--- a/finch/gntsound.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntsound.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_SOUND_H
-#define _GNT_SOUND_H
+#ifndef FINCH_SOUND_H
+#define FINCH_SOUND_H
+
 /**
  * SECTION:gntsound
  * @section_id: finch-gntsound
@@ -88,4 +89,5 @@
  */
 void finch_sounds_show_all(void);
 
-#endif
+#endif /* FINCH_SOUND_H */
+
--- a/finch/gntstatus.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntstatus.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_STATUS_H
-#define _GNT_STATUS_H
+#ifndef FINCH_STATUS_H
+#define FINCH_STATUS_H
+
 /**
  * SECTION:gntstatus
  * @section_id: finch-gntstatus
@@ -50,4 +51,5 @@
  */
 void finch_savedstatus_edit(PurpleSavedStatus *saved);
 
-#endif
+#endif /* FINCH_STATUS_H */
+
--- a/finch/gntui.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntui.h	Sun Sep 29 02:48:18 2019 -0500
@@ -20,8 +20,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_UI_H
-#define _GNT_UI_H
+#ifndef FINCH_UI_H
+#define FINCH_UI_H
+
 /**
  * SECTION:gntui
  * @section_id: finch-gntui
@@ -34,4 +35,5 @@
 void finch_ui_init(void);
 void finch_ui_uninit(void);
 
-#endif
+#endif /* FINCH_UI_H */
+
--- a/finch/gntxfer.h	Sat Sep 28 09:21:29 2019 +0000
+++ b/finch/gntxfer.h	Sun Sep 29 02:48:18 2019 -0500
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111-1301  USA
  */
 
-#ifndef _GNT_XFER_H_
-#define _GNT_XFER_H_
+#ifndef FINCH_XFER_H
+#define FINCH_XFER_H
+
 /**
  * SECTION:gntxfer
  * @section_id: finch-gntxfer
@@ -123,4 +124,5 @@
  */
 PurpleXferUiOps *finch_xfers_get_ui_ops(void);
 
-#endif /* _GNT_XFER_H_ */
+#endif /* FINCH_XFER_H */
+

mercurial