diff options
author | Timo Sirainen <cras@irssi.org> | 2000-03-19 17:57:32 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-03-19 17:57:32 +0000 |
commit | 6275dd69ada5ab66a51537ff3529597daee5e526 (patch) | |
tree | 905a48ff593c6b24b22b1051dfbd73fe383e1ac0 | |
parent | 8d6dd5f992d07b05f4554fce0cd262aaa5794610 (diff) | |
download | irssi-6275dd69ada5ab66a51537ff3529597daee5e526.zip |
Several GLists moved to GSLists.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@159 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/common-setup.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common-setup.h b/src/common-setup.h index 9e2e2892..65678de7 100644 --- a/src/common-setup.h +++ b/src/common-setup.h @@ -23,7 +23,7 @@ #define MAX_MASSJOIN_WAIT 5000 /* lists */ -extern GList *aliases, *ignores, *completions, *notifies, *hilights, *replaces, *popups; +extern GSList *aliases, *ignores, *completions, *notifies, *hilights, *replaces, *popups; /* servers */ typedef struct { @@ -53,8 +53,8 @@ typedef struct { int max_kicks, max_msgs, max_modes; } IRCNET_REC; -extern GList *setupservers; /* list of local servers */ -extern GList *ircnets; /* list of available ircnets */ +extern GSList *setupservers; /* list of local servers */ +extern GSList *ircnets; /* list of available ircnets */ /* channels */ typedef struct { @@ -71,7 +71,7 @@ typedef struct { char *font; } SETUP_CHANNEL_REC; -extern GList *setupchannels; +extern GSList *setupchannels; extern gboolean readonly; extern IPADDR source_host_ip; /* Resolved address */ |