Changeset 4331

Show
Ignore:
Timestamp:
07/11/07 17:26:19 (6 years ago)
Author:
DrewCormier
Message:

passing the app ref as a global so that I don't have to change the inputs of GraphPy?_i. I might rethink this later

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • experimental/components/GraphPy/branches/0.6.1/GraphPy/GraphPy.py

    r4330 r4331  
    4343#------------------------------------------------------------- 
    4444class GraphPy_i(CF__POA.Resource): 
    45     def __init__(self, app_ref, uuid, label, poa): 
     45    def __init__(self, uuid, label, poa): 
    4646        CF._objref_Resource.__init__(self._this()) 
    4747        print "GraphPy_i __init__: " + label 
    4848        self.naming_service_name = label 
    4949        self.poa = poa 
    50         self.app_ref 
     50        self.app_ref = app 
    5151        self.inPort0_servant = dataIn_complexShort_i(self, "GraphDataIn") 
    5252        self.inPort0_var = self.inPort0_servant._this() 
     
    130130         
    131131        # create the main component object 
    132         self.GraphPy_Obj = GraphPy_i(self.app, uuid, label, obj_poa) 
     132        self.GraphPy_Obj = GraphPy_i(uuid, label, obj_poa) 
    133133        GraphPy_var = self.GraphPy_Obj._this() 
    134134