diff -r e9f7747ff365 -r b98e0b2e81ad pidgin/plugins/xmppconsole.c
--- a/pidgin/plugins/xmppconsole.c Sun Oct 04 18:01:35 2009 +0000
+++ b/pidgin/plugins/xmppconsole.c Sun Oct 04 18:02:15 2009 +0000
@@ -26,9 +26,6 @@
#include "xmlnode.h"
#include "gtkimhtml.h"
-#if !GTK_CHECK_VERSION(2,4,0)
-#include "pidgincombobox.h"
-#endif
#include "gtkutils.h"
typedef struct {
@@ -733,9 +730,7 @@
GtkTextBuffer *buffer;
GtkWidget *toolbar;
GList *connections;
-#if GTK_CHECK_VERSION(2,4,0)
GtkToolItem *button;
-#endif
if (console) {
gtk_window_present(GTK_WINDOW(console->window));
@@ -782,32 +777,17 @@
gtk_container_add(GTK_CONTAINER(sw), console->imhtml);
toolbar = gtk_toolbar_new();
-#if GTK_CHECK_VERSION(2,4,0)
button = gtk_tool_button_new(NULL, "");
g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(iq_clicked_cb), NULL);
gtk_container_add(GTK_CONTAINER(toolbar), GTK_WIDGET(button));
-#else
- gtk_toolbar_append_item(GTK_TOOLBAR(toolbar), "",
- _("Insert an stanza."), "foo", NULL, GTK_SIGNAL_FUNC(iq_clicked_cb), NULL);
-#endif
-#if GTK_CHECK_VERSION(2,4,0)
button = gtk_tool_button_new(NULL, "");
g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(presence_clicked_cb), NULL);
gtk_container_add(GTK_CONTAINER(toolbar), GTK_WIDGET(button));
-#else
- gtk_toolbar_append_item(GTK_TOOLBAR(toolbar), "",
- _("Insert a stanza."), NULL, gtk_label_new(NULL), GTK_SIGNAL_FUNC(presence_clicked_cb), NULL);
-#endif
-#if GTK_CHECK_VERSION(2,4,0)
button = gtk_tool_button_new(NULL, "");
g_signal_connect(G_OBJECT(button), "clicked", G_CALLBACK(message_clicked_cb), NULL);
gtk_container_add(GTK_CONTAINER(toolbar), GTK_WIDGET(button));
-#else
- gtk_toolbar_append_item(GTK_TOOLBAR(toolbar), "",
- _("Insert a stanza."), "foo", gtk_label_new(NULL), GTK_SIGNAL_FUNC(message_clicked_cb), NULL);
-#endif
gtk_box_pack_start(GTK_BOX(vbox), toolbar, FALSE, FALSE, 0);