diff options
author | Timo Sirainen <cras@irssi.org> | 2002-04-21 17:31:23 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-04-21 17:31:23 +0000 |
commit | bcc1bc73be1ab0ded89ca5b2b533ce004f339872 (patch) | |
tree | 11b2681df6299bbe4511f53079be934bf87aaadf /src/fe-common | |
parent | 97af1210e16b6014be722841e62f9527c7f94d94 (diff) | |
download | irssi-bcc1bc73be1ab0ded89ca5b2b533ce004f339872.zip |
struct naming changes
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2700 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common')
-rw-r--r-- | src/fe-common/core/formats.h | 2 | ||||
-rw-r--r-- | src/fe-common/core/keyboard.c | 2 | ||||
-rw-r--r-- | src/fe-common/core/keyboard.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/fe-common/core/formats.h b/src/fe-common/core/formats.h index 4d459c1c..531a4613 100644 --- a/src/fe-common/core/formats.h +++ b/src/fe-common/core/formats.h @@ -42,7 +42,7 @@ struct _FORMAT_REC { #define PRINT_FLAG_SET_SERVERTAG 0x0010 #define PRINT_FLAG_UNSET_SERVERTAG 0x0020 -typedef struct { +typedef struct _TEXT_DEST_REC { WINDOW_REC *window; SERVER_REC *server; const char *server_tag; /* if server is non-NULL, must be server->tag */ diff --git a/src/fe-common/core/keyboard.c b/src/fe-common/core/keyboard.c index 10b42307..502c4c6e 100644 --- a/src/fe-common/core/keyboard.c +++ b/src/fe-common/core/keyboard.c @@ -44,7 +44,7 @@ static char used_keys[256]; static GTree *key_states; static int key_config_frozen; -struct KEYBOARD_REC { +struct _KEYBOARD_REC { char *key_state; /* the ongoing key combo */ void *gui_data; /* GUI specific data sent in "key pressed" signal */ }; diff --git a/src/fe-common/core/keyboard.h b/src/fe-common/core/keyboard.h index 9f2652e0..c508d53b 100644 --- a/src/fe-common/core/keyboard.h +++ b/src/fe-common/core/keyboard.h @@ -3,7 +3,7 @@ #include "signals.h" -typedef struct KEYBOARD_REC KEYBOARD_REC; +typedef struct _KEYBOARD_REC KEYBOARD_REC; typedef struct { char *id; |