# HG changeset patch # User Mark Doliner # Date 1116909453 0 # Node ID 61ae1ee53a9470b589dfa5a03f1b2f85791f0350 # Parent 185ca25b5c7e19c3ac513236002436fa7a69ba58 [gaim-migrate @ 12719] sf patch #1207066, from Dave Ahlswede Remove notebook border from tabless conversations committer: Tailor Script diff -r 185ca25b5c7e -r 61ae1ee53a94 COPYRIGHT --- a/COPYRIGHT Tue May 24 04:19:19 2005 +0000 +++ b/COPYRIGHT Tue May 24 04:37:33 2005 +0000 @@ -4,6 +4,7 @@ If you have contributed to Gaim, you deserve to be on this list. Contact us (see: AUTHORS) and we'll add you. +Dave Ahlswede Manuel Amador Daniel Atallah Paul Aurich diff -r 185ca25b5c7e -r 61ae1ee53a94 src/gtkconv.c --- a/src/gtkconv.c Tue May 24 04:19:19 2005 +0000 +++ b/src/gtkconv.c Tue May 24 04:37:33 2005 +0000 @@ -4203,6 +4203,7 @@ gtk_notebook_set_scrollable(GTK_NOTEBOOK(gtkwin->notebook), TRUE); gtk_notebook_popup_enable(GTK_NOTEBOOK(gtkwin->notebook)); gtk_notebook_set_show_tabs(GTK_NOTEBOOK(gtkwin->notebook), FALSE); + gtk_notebook_set_show_border(GTK_NOTEBOOK(gtkwin->notebook), FALSE); gtk_widget_show(gtkwin->notebook); @@ -4305,13 +4306,13 @@ GaimBuddy *bud = gaim_find_buddy(conv->account, conv->name), *b; GaimContact *c; GaimBlistNode *cn; - + if (!bud) return NULL; - + if (!(c = gaim_buddy_get_contact(bud))) return NULL; - + cn = (GaimBlistNode *)c; for (b = (GaimBuddy *)cn->child; b; b = (GaimBuddy *) ((GaimBlistNode *)b)->next) { GaimConversation *conv; @@ -4320,7 +4321,7 @@ return conv->ui_data; } } - + return NULL; }