1
0
mirror of https://github.com/irssi/irssi.git synced 2024-11-03 04:27:19 -05:00

$witem->{data_level} didn't work

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2735 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-04-28 11:30:49 +00:00 committed by cras
parent 5960fcf8cf
commit c8188b61a8

View File

@ -329,7 +329,7 @@ void perl_window_item_fill_hash(HV *hv, WI_ITEM_REC *item)
hv_store(hv, "name", 4, new_pv(item->name), 0);
hv_store(hv, "createtime", 10, newSViv(item->createtime), 0);
hv_store(hv, "data_level", 8, newSViv(item->data_level), 0);
hv_store(hv, "data_level", 10, newSViv(item->data_level), 0);
hv_store(hv, "hilight_color", 10, new_pv(item->hilight_color), 0);
}