diff options
author | Timo Sirainen <cras@irssi.org> | 2000-06-30 21:33:57 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-06-30 21:33:57 +0000 |
commit | 30f4151e5173f228d8f8f84f67bf2078b157ac05 (patch) | |
tree | d4bd79db2fb004962336ea1cba4fa08fc3c2db69 /src/irc | |
parent | 2ea909d72f73d879c1a4968699ae8bd1c041cfd2 (diff) | |
download | irssi-30f4151e5173f228d8f8f84f67bf2078b157ac05.zip |
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
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/core/channels.h | 1 | ||||
-rw-r--r-- | src/irc/core/irc.h | 1 | ||||
-rw-r--r-- | src/irc/core/query.h | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/src/irc/core/channels.h b/src/irc/core/channels.h index 03ae1a6e..3dc497c6 100644 --- a/src/irc/core/channels.h +++ b/src/irc/core/channels.h @@ -11,6 +11,7 @@ typedef struct { char *name; int new_data; + int last_color; time_t createtime; diff --git a/src/irc/core/irc.h b/src/irc/core/irc.h index 29560e28..5c549157 100644 --- a/src/irc/core/irc.h +++ b/src/irc/core/irc.h @@ -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. */ diff --git a/src/irc/core/query.h b/src/irc/core/query.h index bac2ccc5..20ce79cc 100644 --- a/src/irc/core/query.h +++ b/src/irc/core/query.h @@ -11,6 +11,7 @@ typedef struct { char *nick; int new_data; + int last_color; char *address; char *server_tag; |