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 | |
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')
-rw-r--r-- | perl-install/Makefile.config | 2 | ||||
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rw-r--r-- | perl-install/ugtk2.pm | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/Makefile.config b/perl-install/Makefile.config index f1ec30668..5f302e0f5 100644 --- a/perl-install/Makefile.config +++ b/perl-install/Makefile.config @@ -1,5 +1,5 @@ # -*- Makefile -*- -VERSION:=13.58 +VERSION:=13.59 SUDO = sudo TMPDIR = /tmp diff --git a/perl-install/NEWS b/perl-install/NEWS index 86321c562..04ad0de9c 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +Version 13.59 - 14 June 2011 +Fix libnotify API + Version 13.58 - 26 May 2011 - update translations 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} || []}) { |