summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-08-29 15:42:03 +0000
committerfukachan <fukachan>2003-08-29 15:42:03 +0000
commit35d40881eec0f00106919a02aede19ad99e8a42c (patch)
tree56307ad05531db4c67c4d6a924f5c6b11b953169 /fml/lib/FML/Process
parente460ae393d4c06ac2219811653b1388acf28bebb (diff)
downloadfml8-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.pm10
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;