| 816 gtk_toolbar_insert_space(GTK_TOOLBAR(toolbar), -1); |
816 gtk_toolbar_insert_space(GTK_TOOLBAR(toolbar), -1); |
| 817 #endif |
817 #endif |
| 818 |
818 |
| 819 /* Pause */ |
819 /* Pause */ |
| 820 #if GTK_CHECK_VERSION(2,4,0) |
820 #if GTK_CHECK_VERSION(2,4,0) |
| 821 item = gtk_tool_button_new_from_stock(PIDGIN_STOCK_PAUSE); |
821 item = gtk_toggle_tool_button_new_from_stock(PIDGIN_STOCK_PAUSE); |
| 822 #if GTK_CHECK_VERSION(2,12,0) |
822 #if GTK_CHECK_VERSION(2,12,0) |
| 823 gtk_tool_item_set_tooltip_text(item, _("Pause")); |
823 gtk_tool_item_set_tooltip_text(item, _("Pause")); |
| 824 #else |
824 #else |
| 825 gtk_tool_item_set_tooltip(item, tooltips, _("Pause"), NULL); |
825 gtk_tool_item_set_tooltip(item, tooltips, _("Pause"), NULL); |
| 826 #endif |
826 #endif |