Advertisement
tomkiewicz

test

Jan 15th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.79 KB | None | 0 0
  1. diff --git a/pidgin/gtkconv.c b/pidgin/gtkconv.c
  2. --- a/pidgin/gtkconv.c
  3. +++ b/pidgin/gtkconv.c
  4. @@ -1985,7 +1985,7 @@
  5.  {
  6.     gchar *text;
  7.  
  8. -   g_return_val_if_fail(gtkconv != NULL, FALSE);
  9. +   g_return_if_fail(gtkconv != NULL);
  10.  
  11.     text = gtk_webview_get_body_text(GTK_WEBVIEW(gtkconv->entry));
  12.  
  13. @@ -10259,10 +10259,12 @@
  14.     g_signal_connect(G_OBJECT(item), "activate",
  15.                     G_CALLBACK(close_tab_cb), win);
  16.  
  17. +#if 0
  18.     g_signal_connect(G_OBJECT(win->notebook), "page-added",
  19.                      G_CALLBACK(notebook_add_tab_to_menu_cb), win);
  20.     g_signal_connect(G_OBJECT(win->notebook), "page-removed",
  21.                      G_CALLBACK(notebook_remove_tab_from_menu_cb), win);
  22. +#endif
  23.     g_signal_connect(G_OBJECT(win->notebook), "page-reordered",
  24.                      G_CALLBACK(notebook_reorder_tab_in_menu_cb), win);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement