From cf698d4fd3c6c1f5b5ed71f2ab9aac06b076ce62 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Tue, 30 Sep 2008 01:54:34 +0000 Subject: (_text_insert) fix rpmdrake crashing when description begins by "Gtk2::.." (#43802) --- perl-install/mygtk2.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install/mygtk2.pm') diff --git a/perl-install/mygtk2.pm b/perl-install/mygtk2.pm index 9a86ffa76..60e4a7b1d 100644 --- a/perl-install/mygtk2.pm +++ b/perl-install/mygtk2.pm @@ -1286,11 +1286,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