diff options
Diffstat (limited to 'devel/libglademm/files')
-rw-r--r-- | devel/libglademm/files/patch-configure | 10 | ||||
-rw-r--r-- | devel/libglademm/files/patch-libglade__libglademm__xml.h | 11 |
2 files changed, 11 insertions, 10 deletions
diff --git a/devel/libglademm/files/patch-configure b/devel/libglademm/files/patch-configure deleted file mode 100644 index 8c117297dcb6..000000000000 --- a/devel/libglademm/files/patch-configure +++ /dev/null @@ -1,10 +0,0 @@ ---- configure.orig Wed May 21 15:52:43 2003 -+++ configure Wed May 21 15:53:07 2003 -@@ -7854,6 +7854,7 @@ - - # This can be used to rebuild libtool when needed - LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -+$ac_aux_dir/ltconfig $LIBTOOL_DEPS - - # Always use our own libtool. - LIBTOOL='$(SHELL) $(top_builddir)/libtool' diff --git a/devel/libglademm/files/patch-libglade__libglademm__xml.h b/devel/libglademm/files/patch-libglade__libglademm__xml.h new file mode 100644 index 000000000000..470271746be5 --- /dev/null +++ b/devel/libglademm/files/patch-libglade__libglademm__xml.h @@ -0,0 +1,11 @@ +--- libglade/libglademm/xml.h.orig Tue Oct 11 11:18:23 2005 ++++ libglade/libglademm/xml.h Tue Oct 11 11:18:51 2005 +@@ -240,7 +240,7 @@ + //If there is already a C++ instance, then return it again: + if(pObjectBase) + { +- widget = dynamic_cast<T_Widget*>( Glib::wrap(pCWidget) ); ++ widget = dynamic_cast<T_Widget*>( Glib::wrap((GtkWidget*)pCWidget) ); + + //The dynamic cast checks that it is of the correct type. + //Somebody might be trying to call get_widget_derived() after already calling get_widget(), |