diff options
| author | fukachan <fukachan> | 2003-08-29 15:42:03 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2003-08-29 15:42:03 +0000 |
| commit | 35d40881eec0f00106919a02aede19ad99e8a42c (patch) | |
| tree | 56307ad05531db4c67c4d6a924f5c6b11b953169 /fml/lib/FML/Process | |
| parent | e460ae393d4c06ac2219811653b1388acf28bebb (diff) | |
| download | fml8-35d40881eec0f00106919a02aede19ad99e8a42c.tar.gz fml8-35d40881eec0f00106919a02aede19ad99e8a42c.tar.bz2 fml8-35d40881eec0f00106919a02aede19ad99e8a42c.zip | |
over-converted ;) back again
Diffstat (limited to 'fml/lib/FML/Process')
| -rw-r--r-- | fml/lib/FML/Process/Utils.pm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/fml/lib/FML/Process/Utils.pm b/fml/lib/FML/Process/Utils.pm index b5f9c9e0..43024293 100644 --- a/fml/lib/FML/Process/Utils.pm +++ b/fml/lib/FML/Process/Utils.pm @@ -4,7 +4,7 @@ # All rights reserved. This program is free software; you can # redistribute it and/or modify it under the same terms as Perl itself. # -# $FML: Utils.pm,v 1.74 2003/08/25 14:13:58 fukachan Exp $ +# $FML: Utils.pm,v 1.75 2003/08/29 15:34:09 fukachan Exp $ # package FML::Process::Utils; @@ -51,8 +51,8 @@ sub config { my ($curproc) = @_; - if (defined $curproc->config()) { - return $curproc->config(); + if (defined $curproc->{ config }) { + return $curproc->{ config }; } else { return undef; @@ -68,8 +68,8 @@ sub pcb { my ($curproc) = @_; - if (defined $curproc->pcb()) { - return $curproc->pcb(); + if (defined $curproc->{ pcb }) { + return $curproc->{ pcb }; } else { return undef; |
