Changeset 4339

Show
Ignore:
Timestamp:
07/12/07 09:22:53 (6 years ago)
Author:
DrewCormier
Message:

removed some old, unwanted, confusing code

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • experimental/components/image_display/trunk/image_display/image_display.py

    r4125 r4339  
    109109    """Takes care of initializing the ORB and bind the object""" 
    110110 
    111     # remove __init__ for threading approach.  thread cannot take input args? 
    112     def __init__(self, prnt_frame, uuid, label): 
     111    def __init__(self, uuid, label): 
    113112 
    114113        print uuid 
    115         # for __init__: 
    116         #self.prnt_frame = prnt_frame 
    117         # for no __init__: 
    118114        self.prnt_frame = app.frame 
    119115 
     
    139135 
    140136def ORB_Init_fun(): 
    141         orb = ORB_Init(app, uuid, label)  
     137        orb = ORB_Init(uuid, label)  
    142138 
    143139