From 2adc55159b0394bbf55f468e684fc13ebb524ee4 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Sat, 23 Nov 2013 01:26:06 +0100 Subject: Gtk3::Notify->new => Gtk3::Notify::Notification->new --- perl-install/ugtk3.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perl-install/ugtk3.pm b/perl-install/ugtk3.pm index 75d6ca5c7..6bf71bd05 100644 --- a/perl-install/ugtk3.pm +++ b/perl-install/ugtk3.pm @@ -1428,9 +1428,9 @@ sub add { } sub show { - my ($self) = @_; # perl_checker: $self = Gtk3::Notify->new + my ($self) = @_; # perl_checker: $self = Gtk3::Notify::Notification->new my $info = $self->{queue}[0]; - my $notification = Gtk3::Notify->new($info->{title}, $info->{message}, $self->{statusicon}); + my $notification = Gtk3::Notify::Notification->new($info->{title}, $info->{message}, $self->{statusicon}); $notification->set_icon_from_pixbuf($info->{pixbuf}) if $info->{pixbuf}; $notification->set_urgency($info->{urgency}) if $info->{urgency}; foreach my $a (@{$info->{actions} || []}) { -- cgit v1.2.1