summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/curses/gui-curses.h6
-rw-r--r--src/gui/gui-bar-item.h6
-rw-r--r--src/gui/gui-bar-window.h6
-rw-r--r--src/gui/gui-bar.h6
-rw-r--r--src/gui/gui-buffer.h6
-rw-r--r--src/gui/gui-chat.h6
-rw-r--r--src/gui/gui-color.h6
-rw-r--r--src/gui/gui-completion.h6
-rw-r--r--src/gui/gui-cursor.h6
-rw-r--r--src/gui/gui-filter.h6
-rw-r--r--src/gui/gui-focus.h6
-rw-r--r--src/gui/gui-history.h6
-rw-r--r--src/gui/gui-hotlist.h6
-rw-r--r--src/gui/gui-input.h6
-rw-r--r--src/gui/gui-key.h6
-rw-r--r--src/gui/gui-layout.h6
-rw-r--r--src/gui/gui-line.h6
-rw-r--r--src/gui/gui-main.h6
-rw-r--r--src/gui/gui-mouse.h6
-rw-r--r--src/gui/gui-nicklist.h6
-rw-r--r--src/gui/gui-window.h6
21 files changed, 63 insertions, 63 deletions
diff --git a/src/gui/curses/gui-curses.h b/src/gui/curses/gui-curses.h
index 7553e842f..e2047d53c 100644
--- a/src/gui/curses/gui-curses.h
+++ b/src/gui/curses/gui-curses.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_CURSES_H
-#define __WEECHAT_GUI_CURSES_H 1
+#ifndef WEECHAT_GUI_CURSES_H
+#define WEECHAT_GUI_CURSES_H 1
#include <time.h>
@@ -134,4 +134,4 @@ extern void gui_window_vline (WINDOW *window, int x, int y, int height,
const char *string);
extern void gui_window_set_title (const char *title);
-#endif /* __WEECHAT_GUI_CURSES_H */
+#endif /* WEECHAT_GUI_CURSES_H */
diff --git a/src/gui/gui-bar-item.h b/src/gui/gui-bar-item.h
index 3bbede885..58a4f429f 100644
--- a/src/gui/gui-bar-item.h
+++ b/src/gui/gui-bar-item.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_BAR_ITEM_H
-#define __WEECHAT_GUI_BAR_ITEM_H 1
+#ifndef WEECHAT_GUI_BAR_ITEM_H
+#define WEECHAT_GUI_BAR_ITEM_H 1
enum t_gui_bar_item_weechat
{
@@ -113,4 +113,4 @@ extern int gui_bar_item_add_to_infolist (struct t_infolist *infolist,
struct t_gui_bar_item *bar_item);
extern void gui_bar_item_print_log ();
-#endif /* __WEECHAT_GUI_BAR_ITEM_H */
+#endif /* WEECHAT_GUI_BAR_ITEM_H */
diff --git a/src/gui/gui-bar-window.h b/src/gui/gui-bar-window.h
index 10d36d281..ff7364513 100644
--- a/src/gui/gui-bar-window.h
+++ b/src/gui/gui-bar-window.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_BAR_WINDOW_H
-#define __WEECHAT_GUI_BAR_WINDOW_H 1
+#ifndef WEECHAT_GUI_BAR_WINDOW_H
+#define WEECHAT_GUI_BAR_WINDOW_H 1
struct t_infolist;
struct t_gui_buffer;
@@ -119,4 +119,4 @@ extern void gui_bar_window_draw (struct t_gui_bar_window *bar_window,
struct t_gui_window *window);
extern void gui_bar_window_objects_print_log (struct t_gui_bar_window *bar_window);
-#endif /* __WEECHAT_GUI_BAR_WINDOW_H */
+#endif /* WEECHAT_GUI_BAR_WINDOW_H */
diff --git a/src/gui/gui-bar.h b/src/gui/gui-bar.h
index 913ddcb85..974a54b87 100644
--- a/src/gui/gui-bar.h
+++ b/src/gui/gui-bar.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_BAR_H
-#define __WEECHAT_GUI_BAR_H 1
+#ifndef WEECHAT_GUI_BAR_H
+#define WEECHAT_GUI_BAR_H 1
struct t_infolist;
struct t_weechat_plugin;
@@ -159,4 +159,4 @@ extern int gui_bar_add_to_infolist (struct t_infolist *infolist,
struct t_gui_bar *bar);
extern void gui_bar_print_log ();
-#endif /* __WEECHAT_GUI_BAR_H */
+#endif /* WEECHAT_GUI_BAR_H */
diff --git a/src/gui/gui-buffer.h b/src/gui/gui-buffer.h
index e3552aa73..c9d8e2674 100644
--- a/src/gui/gui-buffer.h
+++ b/src/gui/gui-buffer.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_BUFFER_H
-#define __WEECHAT_GUI_BUFFER_H 1
+#ifndef WEECHAT_GUI_BUFFER_H
+#define WEECHAT_GUI_BUFFER_H 1
#include <limits.h>
#include <regex.h>
@@ -330,4 +330,4 @@ extern int gui_buffer_add_to_infolist (struct t_infolist *infolist,
extern void gui_buffer_dump_hexa (struct t_gui_buffer *buffer);
extern void gui_buffer_print_log ();
-#endif /* __WEECHAT_GUI_BUFFER_H */
+#endif /* WEECHAT_GUI_BUFFER_H */
diff --git a/src/gui/gui-chat.h b/src/gui/gui-chat.h
index 6ce047b92..a8a11c42a 100644
--- a/src/gui/gui-chat.h
+++ b/src/gui/gui-chat.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_CHAT_H
-#define __WEECHAT_GUI_CHAT_H 1
+#ifndef WEECHAT_GUI_CHAT_H
+#define WEECHAT_GUI_CHAT_H 1
struct t_hashtable;
struct t_gui_window;
@@ -105,4 +105,4 @@ extern void gui_chat_draw (struct t_gui_buffer *buffer, int clear_chat);
extern void gui_chat_draw_line (struct t_gui_buffer *buffer,
struct t_gui_line *line);
-#endif /* __WEECHAT_GUI_CHAT_H */
+#endif /* WEECHAT_GUI_CHAT_H */
diff --git a/src/gui/gui-color.h b/src/gui/gui-color.h
index b19a500f7..fb4b86a09 100644
--- a/src/gui/gui-color.h
+++ b/src/gui/gui-color.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_COLOR_H
-#define __WEECHAT_GUI_COLOR_H 1
+#ifndef WEECHAT_GUI_COLOR_H
+#define WEECHAT_GUI_COLOR_H 1
#include <regex.h>
@@ -213,4 +213,4 @@ extern struct t_gui_color_palette *gui_color_palette_new (int number,
extern void gui_color_palette_free (struct t_gui_color_palette *color_palette);
extern void gui_color_dump ();
-#endif /* __WEECHAT_GUI_COLOR_H */
+#endif /* WEECHAT_GUI_COLOR_H */
diff --git a/src/gui/gui-completion.h b/src/gui/gui-completion.h
index ab5304cc8..7192779de 100644
--- a/src/gui/gui-completion.h
+++ b/src/gui/gui-completion.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_COMPLETION_H
-#define __WEECHAT_GUI_COMPLETION_H 1
+#ifndef WEECHAT_GUI_COMPLETION_H
+#define WEECHAT_GUI_COMPLETION_H 1
#define GUI_COMPLETION_NULL 0
#define GUI_COMPLETION_COMMAND 1
@@ -87,4 +87,4 @@ extern struct t_hdata *gui_completion_hdata_completion_partial_cb (void *data,
const char *hdata_name);
extern void gui_completion_print_log (struct t_gui_completion *completion);
-#endif /* __WEECHAT_GUI_COMPLETION_H */
+#endif /* WEECHAT_GUI_COMPLETION_H */
diff --git a/src/gui/gui-cursor.h b/src/gui/gui-cursor.h
index 7f74da36e..749b40b2d 100644
--- a/src/gui/gui-cursor.h
+++ b/src/gui/gui-cursor.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_CURSOR_H
-#define __WEECHAT_GUI_CURSOR_H 1
+#ifndef WEECHAT_GUI_CURSOR_H
+#define WEECHAT_GUI_CURSOR_H 1
/* cursor variables */
@@ -36,4 +36,4 @@ extern void gui_cursor_move_add_xy (int add_x, int add_y);
extern void gui_cursor_move_area_add_xy (int add_x, int add_y);
extern void gui_cursor_move_area (const char *area);
-#endif /* __WEECHAT_GUI_CURSOR_H */
+#endif /* WEECHAT_GUI_CURSOR_H */
diff --git a/src/gui/gui-filter.h b/src/gui/gui-filter.h
index ac5ae92b8..6bf5cf7e5 100644
--- a/src/gui/gui-filter.h
+++ b/src/gui/gui-filter.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_FILTER_H
-#define __WEECHAT_GUI_FILTER_H 1
+#ifndef WEECHAT_GUI_FILTER_H
+#define WEECHAT_GUI_FILTER_H 1
#include <regex.h>
@@ -75,4 +75,4 @@ extern int gui_filter_add_to_infolist (struct t_infolist *infolist,
struct t_gui_filter *filter);
extern void gui_filter_print_log ();
-#endif /* __WEECHAT_GUI_FILTER_H */
+#endif /* WEECHAT_GUI_FILTER_H */
diff --git a/src/gui/gui-focus.h b/src/gui/gui-focus.h
index eb45238d4..fd62af7df 100644
--- a/src/gui/gui-focus.h
+++ b/src/gui/gui-focus.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_FOCUS_H
-#define __WEECHAT_GUI_FOCUS 1
+#ifndef WEECHAT_GUI_FOCUS_H
+#define WEECHAT_GUI_FOCUS 1
/* focus structures */
@@ -46,4 +46,4 @@ extern void gui_focus_free_info (struct t_gui_focus_info *focus_info);
extern struct t_hashtable *gui_focus_to_hashtable (struct t_gui_focus_info *focus_info,
const char *key);
-#endif /* __WEECHAT_GUI_FOCUS_H */
+#endif /* WEECHAT_GUI_FOCUS_H */
diff --git a/src/gui/gui-history.h b/src/gui/gui-history.h
index 2a5d67d3e..df22e5584 100644
--- a/src/gui/gui-history.h
+++ b/src/gui/gui-history.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_HISTORY_H
-#define __WEECHAT_GUI_HISTORY_H 1
+#ifndef WEECHAT_GUI_HISTORY_H
+#define WEECHAT_GUI_HISTORY_H 1
struct t_gui_buffer;
@@ -44,4 +44,4 @@ extern struct t_hdata *gui_history_hdata_history_cb (void *data,
extern int gui_history_add_to_infolist (struct t_infolist *infolist,
struct t_gui_history *history);
-#endif /* __WEECHAT_GUI_HISTORY_H */
+#endif /* WEECHAT_GUI_HISTORY_H */
diff --git a/src/gui/gui-hotlist.h b/src/gui/gui-hotlist.h
index 89405a78b..18cec9702 100644
--- a/src/gui/gui-hotlist.h
+++ b/src/gui/gui-hotlist.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_HOTLIST_H
-#define __WEECHAT_GUI_HOTLIST_H 1
+#ifndef WEECHAT_GUI_HOTLIST_H
+#define WEECHAT_GUI_HOTLIST_H 1
enum t_gui_hotlist_priority
{
@@ -67,4 +67,4 @@ extern int gui_hotlist_add_to_infolist (struct t_infolist *infolist,
extern void gui_hotlist_print_log ();
extern void gui_hotlist_end ();
-#endif /* __WEECHAT_GUI_HOTLIST_H */
+#endif /* WEECHAT_GUI_HOTLIST_H */
diff --git a/src/gui/gui-input.h b/src/gui/gui-input.h
index 4ecd429f6..c5d0df681 100644
--- a/src/gui/gui-input.h
+++ b/src/gui/gui-input.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_INPUT_H
-#define __WEECHAT_GUI_INPUT_H 1
+#ifndef WEECHAT_GUI_INPUT_H
+#define WEECHAT_GUI_INPUT_H 1
struct t_gui_buffer;
@@ -86,4 +86,4 @@ extern void gui_input_insert (struct t_gui_buffer *buffer, const char *args);
extern void gui_input_undo (struct t_gui_buffer *buffer);
extern void gui_input_redo (struct t_gui_buffer *buffer);
-#endif /* __WEECHAT_GUI_INPUT_H */
+#endif /* WEECHAT_GUI_INPUT_H */
diff --git a/src/gui/gui-key.h b/src/gui/gui-key.h
index 421c7a5c5..fc3fc4a05 100644
--- a/src/gui/gui-key.h
+++ b/src/gui/gui-key.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_KEY_H
-#define __WEECHAT_GUI_KEY_H 1
+#ifndef WEECHAT_GUI_KEY_H
+#define WEECHAT_GUI_KEY_H 1
struct t_hashtable;
@@ -142,4 +142,4 @@ extern void gui_key_print_log (struct t_gui_buffer *buffer);
extern void gui_key_default_bindings ();
-#endif /* __WEECHAT_GUI_KEY_H */
+#endif /* WEECHAT_GUI_KEY_H */
diff --git a/src/gui/gui-layout.h b/src/gui/gui-layout.h
index 527c51cf8..ca02ae99e 100644
--- a/src/gui/gui-layout.h
+++ b/src/gui/gui-layout.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_LAYOUT_H
-#define __WEECHAT_GUI_LAYOUT_H 1
+#ifndef WEECHAT_GUI_LAYOUT_H
+#define WEECHAT_GUI_LAYOUT_H 1
#define GUI_LAYOUT_DEFAULT_NAME "default"
@@ -129,4 +129,4 @@ extern void gui_layout_print_log ();
extern void gui_layout_init ();
extern void gui_layout_end ();
-#endif /* __WEECHAT_GUI_LAYOUT_H */
+#endif /* WEECHAT_GUI_LAYOUT_H */
diff --git a/src/gui/gui-line.h b/src/gui/gui-line.h
index b402f414a..595f622b7 100644
--- a/src/gui/gui-line.h
+++ b/src/gui/gui-line.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_LINE_H
-#define __WEECHAT_GUI_LINE_H 1
+#ifndef WEECHAT_GUI_LINE_H
+#define WEECHAT_GUI_LINE_H 1
#include <regex.h>
@@ -124,4 +124,4 @@ extern int gui_line_add_to_infolist (struct t_infolist *infolist,
struct t_gui_line *line);
extern void gui_lines_print_log (struct t_gui_lines *lines);
-#endif /* __WEECHAT_GUI_LINE_H */
+#endif /* WEECHAT_GUI_LINE_H */
diff --git a/src/gui/gui-main.h b/src/gui/gui-main.h
index 180d0f935..f66e4dbd9 100644
--- a/src/gui/gui-main.h
+++ b/src/gui/gui-main.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_MAIN_H
-#define __WEECHAT_GUI_MAIN_H 1
+#ifndef WEECHAT_GUI_MAIN_H
+#define WEECHAT_GUI_MAIN_H 1
/* main functions (GUI dependent) */
@@ -34,4 +34,4 @@ extern void gui_main_end (int clean_exit);
/* terminal functions (GUI dependent) */
extern void gui_term_set_eat_newline_glitch (int value);
-#endif /* __WEECHAT_GUI_MAIN_H */
+#endif /* WEECHAT_GUI_MAIN_H */
diff --git a/src/gui/gui-mouse.h b/src/gui/gui-mouse.h
index de66507cb..0a039cc4b 100644
--- a/src/gui/gui-mouse.h
+++ b/src/gui/gui-mouse.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_MOUSE_H
-#define __WEECHAT_GUI_MOUSE_H 1
+#ifndef WEECHAT_GUI_MOUSE_H
+#define WEECHAT_GUI_MOUSE_H 1
/* mouse variables */
@@ -46,4 +46,4 @@ extern void gui_mouse_grab_init (int area);
extern void gui_mouse_event_init ();
extern void gui_mouse_event_end ();
-#endif /* __WEECHAT_GUI_MOUSE_H */
+#endif /* WEECHAT_GUI_MOUSE_H */
diff --git a/src/gui/gui-nicklist.h b/src/gui/gui-nicklist.h
index 2064374d6..ff882d8be 100644
--- a/src/gui/gui-nicklist.h
+++ b/src/gui/gui-nicklist.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_NICKLIST_H
-#define __WEECHAT_GUI_NICKLIST_H 1
+#ifndef WEECHAT_GUI_NICKLIST_H
+#define WEECHAT_GUI_NICKLIST_H 1
struct t_gui_buffer;
struct t_infolist;
@@ -118,4 +118,4 @@ extern int gui_nicklist_add_to_infolist (struct t_infolist *infolist,
extern void gui_nicklist_print_log (struct t_gui_nick_group *group, int indent);
extern void gui_nicklist_end ();
-#endif /* __WEECHAT_GUI_NICKLIST_H */
+#endif /* WEECHAT_GUI_NICKLIST_H */
diff --git a/src/gui/gui-window.h b/src/gui/gui-window.h
index 0c17cbb73..ac4f7ec58 100644
--- a/src/gui/gui-window.h
+++ b/src/gui/gui-window.h
@@ -17,8 +17,8 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef __WEECHAT_GUI_WINDOW_H
-#define __WEECHAT_GUI_WINDOW_H 1
+#ifndef WEECHAT_GUI_WINDOW_H
+#define WEECHAT_GUI_WINDOW_H 1
struct t_infolist;
struct t_gui_bar_window;
@@ -240,4 +240,4 @@ extern void gui_window_move_cursor ();
extern void gui_window_term_display_infos ();
extern void gui_window_objects_print_log (struct t_gui_window *window);
-#endif /* __WEECHAT_GUI_WINDOW_H */
+#endif /* WEECHAT_GUI_WINDOW_H */