diff options
author | Dexter Morgan <dmorgan@mageia.org> | 2011-06-14 07:15:33 +0000 |
---|---|---|
committer | Dexter Morgan <dmorgan@mageia.org> | 2011-06-14 07:15:33 +0000 |
commit | 70d43f633119a5a03da9571987d12a276787f1c3 (patch) | |
tree | 969e134248bca91e9a6966f44dc6cd4b6a7f04b3 /perl-install/ugtk2.pm | |
parent | 96aa81254d29666228568ccd54c5b6de5f15b0b6 (diff) | |
download | drakx-70d43f633119a5a03da9571987d12a276787f1c3.tar drakx-70d43f633119a5a03da9571987d12a276787f1c3.tar.gz drakx-70d43f633119a5a03da9571987d12a276787f1c3.tar.bz2 drakx-70d43f633119a5a03da9571987d12a276787f1c3.tar.xz drakx-70d43f633119a5a03da9571987d12a276787f1c3.zip |
Fix libnotify API
Diffstat (limited to 'perl-install/ugtk2.pm')
-rw-r--r-- | perl-install/ugtk2.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/ugtk2.pm b/perl-install/ugtk2.pm index 05e361253..5199068e5 100644 --- a/perl-install/ugtk2.pm +++ b/perl-install/ugtk2.pm @@ -1605,7 +1605,7 @@ sub add { sub show { my ($self) = @_; # perl_checker: $self = Gtk2::Notify->new my $info = $self->{queue}[0]; - my $notification = Gtk2::Notify->new_with_status_icon($info->{title}, $info->{message}, undef, $self->{statusicon}); + my $notification = Gtk2::Notify->new($info->{title}, $info->{message}, $self->{statusicon}); $notification->set_icon_from_pixbuf($info->{pixbuf}); $notification->set_urgency($info->{urgency}) if $info->{urgency}; foreach my $a (@{$info->{actions} || []}) { |