ClusTerm 0.6 fails to run with the following error:
new method expects name => value pairs (odd number of arguments detected) at ClusTerm/App.pm line 36.
The error appears to be due to a change in gtk2-perl when creating new Glib::Object instances.
I believe the conflict is with Glib::Object::Subclass (v. 0.03)
Hi ... I am a heavy user of Clusterm ... and I fear there is no longer support ...
However, concerning this issue, I ran into when I upgraded tu Ubuntu 9.10 yesterday evening, I might have found a fix ...
In /usr/local/share/clusterm/ClusTerm/App.pm :
Line 36 : is: my $self = Glib::Object::new(__PACKAGE__, $title); Change it to : my $self = Glib::Object::new(__PACKAGE__);
And BAM ... it works again ;)
Log in to post a comment.
I believe the conflict is with Glib::Object::Subclass (v. 0.03)
Hi ... I am a heavy user of Clusterm ... and I fear there is no longer support ...
However, concerning this issue, I ran into when I upgraded tu Ubuntu 9.10 yesterday evening, I might have found a fix ...
In /usr/local/share/clusterm/ClusTerm/App.pm :
Line 36 :
is:
my $self = Glib::Object::new(__PACKAGE__, $title);
Change it to :
my $self = Glib::Object::new(__PACKAGE__);
And BAM ... it works again ;)