diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-09-18 18:44:03 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-09-18 18:44:03 +0200 |
commit | c572e393e7399d125b543f4102d1baeb3b3b8391 (patch) | |
tree | 885fe3b4307148b377c3f5233c98e322a603c734 /src/gui/gtk | |
parent | c3df7da6411a44da6b9fc0f52700372a1d074758 (diff) | |
download | weechat-c572e393e7399d125b543f4102d1baeb3b3b8391.zip |
Remove "category" for buffers (keep only name).
Diffstat (limited to 'src/gui/gtk')
-rw-r--r-- | src/gui/gtk/gui-gtk-main.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/gui/gtk/gui-gtk-main.c b/src/gui/gtk/gui-gtk-main.c index 71f13cb30..55ec7e2a3 100644 --- a/src/gui/gtk/gui-gtk-main.c +++ b/src/gui/gtk/gui-gtk-main.c @@ -170,9 +170,7 @@ gui_main_init () if (gui_window_new (NULL, 0, 0, 0, 0, 100, 100)) { gui_current_window = gui_windows; - ptr_buffer = gui_buffer_new (NULL, "weechat", "weechat", - NULL, NULL, - NULL, NULL); + ptr_buffer = gui_buffer_new (NULL, "weechat", NULL, NULL, NULL, NULL); if (ptr_buffer) { gui_init_ok = 1; |