mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 16:42:30 +02:00
Irssi::Irc::Dcc::* is now correctly blessed instead of using Irssi::Irc::Dcc
always. did s/irssi_bless/iobject_bless/, added simple_iobject_bless which DCC uses. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2092 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
99a6a85b85
commit
3819189ef4
14 changed files with 35 additions and 31 deletions
|
|
@ -9,7 +9,7 @@ PREINIT:
|
|||
GSList *tmp;
|
||||
PPCODE:
|
||||
for (tmp = servers; tmp != NULL; tmp = tmp->next) {
|
||||
XPUSHs(sv_2mortal(irssi_bless((SERVER_REC *) tmp->data)));
|
||||
XPUSHs(sv_2mortal(iobject_bless((SERVER_REC *) tmp->data)));
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -27,7 +27,7 @@ PREINIT:
|
|||
GSList *tmp;
|
||||
PPCODE:
|
||||
for (tmp = chatnets; tmp != NULL; tmp = tmp->next) {
|
||||
XPUSHs(sv_2mortal(irssi_bless((CHATNET_REC *) tmp->data)));
|
||||
XPUSHs(sv_2mortal(iobject_bless((CHATNET_REC *) tmp->data)));
|
||||
}
|
||||
|
||||
Irssi::Connect
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue