diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-23 01:26:06 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-24 23:53:10 +0100 |
commit | 2adc55159b0394bbf55f468e684fc13ebb524ee4 (patch) | |
tree | 9fbf3377cfe8fb8ca721ff9a24543ec2d59f8c83 /perl-install | |
parent | 78397d458e73613f1440c0aeb0e87e0c5b31ebc9 (diff) | |
download | drakx-2adc55159b0394bbf55f468e684fc13ebb524ee4.tar drakx-2adc55159b0394bbf55f468e684fc13ebb524ee4.tar.gz drakx-2adc55159b0394bbf55f468e684fc13ebb524ee4.tar.bz2 drakx-2adc55159b0394bbf55f468e684fc13ebb524ee4.tar.xz drakx-2adc55159b0394bbf55f468e684fc13ebb524ee4.zip |
Gtk3::Notify->new => Gtk3::Notify::Notification->new
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/ugtk3.pm | 4 |
1 files 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} || []}) { |