mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 15:12:11 +02:00
/SAVEWINDOWS saves now split windows
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1202 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
88b091cc95
commit
5ab27ea604
5 changed files with 262 additions and 31 deletions
|
|
@ -58,6 +58,9 @@ void gui_textwidget_deinit(void);
|
|||
void mainwindow_activity_init(void);
|
||||
void mainwindow_activity_deinit(void);
|
||||
|
||||
void mainwindows_save_init(void);
|
||||
void mainwindows_save_deinit(void);
|
||||
|
||||
static GMainLoop *main_loop;
|
||||
int quitting;
|
||||
|
||||
|
|
@ -122,6 +125,7 @@ static void textui_finish_init(void)
|
|||
gui_textwidget_init();
|
||||
mainwindows_init();
|
||||
mainwindow_activity_init();
|
||||
mainwindows_save_init();
|
||||
gui_windows_init();
|
||||
statusbar_init();
|
||||
|
||||
|
|
@ -159,6 +163,7 @@ static void textui_deinit(void)
|
|||
gui_printtext_deinit();
|
||||
gui_readline_deinit();
|
||||
gui_windows_deinit();
|
||||
mainwindows_save_deinit();
|
||||
mainwindow_activity_deinit();
|
||||
mainwindows_deinit();
|
||||
gui_expandos_deinit();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue