1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

WI_ITEM_REC was modified, but CHANNEL_REC, etc. wasn't. BIG mistake.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@402 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-06-30 21:33:57 +00:00 committed by cras
parent 2ea909d72f
commit 30f4151e51
4 changed files with 7 additions and 1 deletions

View File

@ -10,7 +10,10 @@ enum {
/* All window items *MUST* have these variables in same order
at the start of the structure - the server's type can of course be
replaced with the preferred record type. */
replaced with the preferred record type.
!!!! So IF YOU CHANGE THIS: REMEMBER TO UPDATE WI_IRC_REC, CHANNEL_REC
and QUERY_REC !!!! (I already forgot this once :) */
typedef struct {
int type;
GHashTable *module_data;

View File

@ -11,6 +11,7 @@ typedef struct {
char *name;
int new_data;
int last_color;
time_t createtime;

View File

@ -31,6 +31,7 @@ typedef struct {
char *name;
int new_data;
int last_color;
} WI_IRC_REC;
/* return TRUE if `item' is an IRC type. */

View File

@ -11,6 +11,7 @@ typedef struct {
char *nick;
int new_data;
int last_color;
char *address;
char *server_tag;