mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
Several GLists moved to GSLists.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@159 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
8d6dd5f992
commit
6275dd69ad
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user