summaryrefslogtreecommitdiff
path: root/chat/gabber/patches/patch-ad
diff options
context:
space:
mode:
Diffstat (limited to 'chat/gabber/patches/patch-ad')
-rw-r--r--chat/gabber/patches/patch-ad29
1 files changed, 0 insertions, 29 deletions
diff --git a/chat/gabber/patches/patch-ad b/chat/gabber/patches/patch-ad
deleted file mode 100644
index aa61bb52dba..00000000000
--- a/chat/gabber/patches/patch-ad
+++ /dev/null
@@ -1,29 +0,0 @@
-$NetBSD: patch-ad,v 1.3 2004/01/17 17:34:05 kristerw Exp $
-
---- src/GladeHelper.hh.orig Sat Jan 17 17:06:59 2004
-+++ src/GladeHelper.hh Sat Jan 17 17:07:01 2004
-@@ -24,13 +24,14 @@
- #include <glade/glade-xml.h>
- #include <gtk/gtkobject.h>
- #include <gtk--/base.h>
-+#include <iostream>
-
- template<class T> T* getWidgetPtr(GladeXML* g, const char* name)
- {
- T* result = static_cast<T*>(Gtk::wrap_auto((GtkObject*)glade_xml_get_widget(g, name)));
- if (result == NULL)
- {
-- cerr << "** ERROR **: unable to load widget: " << name << endl;
-+ std::cerr << "** ERROR **: unable to load widget: " << name << std::endl;
- g_assert(result != NULL);
- }
- return result;
-@@ -41,7 +42,7 @@
- T* result = (T*)glade_xml_get_widget(g, name);
- if (result == NULL)
- {
-- cerr << "** ERROR **: unable to load widget: " << name << endl;
-+ std::cerr << "** ERROR **: unable to load widget: " << name << std::endl;
- g_assert(result != NULL);
- }
- return result;