diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-02-04 10:36:16 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-02-04 10:36:16 +0100 |
commit | 155e689a26fc18f37b3572a5507f1c94edd91648 (patch) | |
tree | 3250163f6dc51e090af75ab2fec50eddab4955b7 /src/core | |
parent | 763bb073b4710777c3083833c931290bdc5df066 (diff) | |
download | weechat-155e689a26fc18f37b3572a5507f1c94edd91648.zip |
Removed typedef for keyboard structures in gui-keyboard.h
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/wee-command.c | 4 | ||||
-rw-r--r-- | src/core/wee-config.c | 2 | ||||
-rw-r--r-- | src/core/weechat.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c index 65cedc6a1..cbe85cf82 100644 --- a/src/core/wee-command.c +++ b/src/core/wee-command.c @@ -655,7 +655,7 @@ command_history (void *data, struct t_gui_buffer *buffer, */ void -command_key_display (t_gui_key *key, int new_key) +command_key_display (struct t_gui_key *key, int new_key) { char *expanded_name; @@ -696,7 +696,7 @@ command_key (void *data, struct t_gui_buffer *buffer, { char *args, *internal_code; int i; - t_gui_key *ptr_key; + struct t_gui_key *ptr_key; t_gui_key_func *ptr_function; /* make C compiler happy */ diff --git a/src/core/wee-config.c b/src/core/wee-config.c index 49ace9b49..eae6994f4 100644 --- a/src/core/wee-config.c +++ b/src/core/wee-config.c @@ -465,7 +465,7 @@ void config_weechat_write_keys (void *data, struct t_config_file *config_file, char *section_name) { - t_gui_key *ptr_key; + struct t_gui_key *ptr_key; char *expanded_name, *function_name; /* make C compiler happy */ diff --git a/src/core/weechat.c b/src/core/weechat.c index d2121a71a..4ee1284e2 100644 --- a/src/core/weechat.c +++ b/src/core/weechat.c @@ -176,7 +176,7 @@ weechat_display_key_functions () void weechat_display_keys () { - t_gui_key *ptr_key; + struct t_gui_key *ptr_key; char *expanded_name; string_iconv_fprintf (stdout, |