From 70d43f633119a5a03da9571987d12a276787f1c3 Mon Sep 17 00:00:00 2001 From: Dexter Morgan Date: Tue, 14 Jun 2011 07:15:33 +0000 Subject: Fix libnotify API --- perl-install/Makefile.config | 2 +- perl-install/NEWS | 3 +++ perl-install/ugtk2.pm | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) (limited to 'perl-install') 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} || []}) { -- cgit v1.2.1