mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
window_[add|remove]_item -> window_item_[add|remove]
added window_item_destroy(), window_item_remove() doesn't destroy the item anymore window_find_item()'s first parameter changed from WINDOW_REC to SERVER_REC git-svn-id: http://svn.irssi.org/repos/irssi/trunk@922 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
ed550c01d1
commit
df94b9a44c
10 changed files with 62 additions and 58 deletions
|
|
@ -3,10 +3,12 @@
|
|||
|
||||
#include "fe-windows.h"
|
||||
|
||||
/* Add/remove window item from `window' */
|
||||
void window_add_item(WINDOW_REC *window, WI_ITEM_REC *item, int automatic);
|
||||
void window_remove_item(WINDOW_REC *window, WI_ITEM_REC *item);
|
||||
/* Find a window for `item' and call window_add_item(). */
|
||||
/* Add/remove/destroy window item from `window' */
|
||||
void window_item_add(WINDOW_REC *window, WI_ITEM_REC *item, int automatic);
|
||||
void window_item_remove(WINDOW_REC *window, WI_ITEM_REC *item);
|
||||
void window_item_destroy(WINDOW_REC *window, WI_ITEM_REC *item);
|
||||
|
||||
/* Find a window for `item' and call window_item_add(). */
|
||||
void window_item_create(WI_ITEM_REC *item, int automatic);
|
||||
|
||||
WINDOW_REC *window_item_window(WI_ITEM_REC *item);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue