From 168ac4cfe5a22c89d563cb01dd655ebeb0f1925c Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 30 Sep 2008 01:55:24 +0000 Subject: (_text_insert) fix rpmdrake crashing when description begins by "Gtk2::.." (#43802) --- perl-install/NEWS | 4 ++++ perl-install/mygtk2.pm | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/perl-install/NEWS b/perl-install/NEWS index a5840f7d9..b026631b3 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,7 @@ +- libDrakX: + o fix rpmdrake crashing when description begins by "Gtk2::.." + (#43802) + Version 10.29.9 - 11 September 2008 - bootloader-config: diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index 014725b46..5c1f6f7c8 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -1064,11 +1064,11 @@ sub _text_insert { foreach my $token (@$t) { my ($item, $tag) = @$token; my $iter1 = $buffer->get_end_iter; - if ($item =~ /^Gtk2::Gdk::Pixbuf/) { + if (ref($item) =~ /^Gtk2::Gdk::Pixbuf/) { $buffer->insert_pixbuf($iter1, $item); next; } - if ($item =~ /^Gtk2::/) { + if (ref($item) =~ /^Gtk2::/) { my $anchor = $buffer->create_child_anchor($iter1); $textview->add_child_at_anchor($item, $anchor); $textview->{anchors} ||= []; -- cgit v1.2.1