Ignore:
Timestamp:
07/20/10 16:06:33 (22 months ago)
Author:
ddangelo
Message:

Name field of all scripts set

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/avango-utils/python/_bool_scripts.py

    r448 r498  
    4343 
    4444        self._actual_id = 0 
     45         
     46        self.Name.value = "BoolXBase" 
    4547 
    4648    def add_and_connect_bool_field(self,field): 
     
    6769 
    6870class BoolXOr(BoolXBase): 
     71     
     72    def __init__(self): 
     73        self.super(BoolXOr).__init__() 
     74         
     75        self.Name.value = "BoolXOr" 
    6976 
    7077    def on_calculate(self): 
     
    8491 
    8592class BoolXAnd(BoolXBase): 
     93     
     94    def __init__(self): 
     95        self.super(BoolXAnd).__init__() 
     96         
     97        self.Name.value = "BoolXAnd" 
    8698 
    8799    def on_calculate(self): 
Note: See TracChangeset for help on using the changeset viewer.