Changeset 812

Show
Ignore:
Timestamp:
06/12/07 19:47:25 (6 years ago)
Author:
ggpolo
Message:

test7-isolated updated

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branch/ggpolo/umitInventory/new-sample/tests/test7-isolated.py

    r811 r812  
    2323        self.selection = None 
    2424 
     25    """ 
    2526    def get_selection(self): 
    2627        return self.__selbtn 
     
    3435    def set_graph(self, graph): 
    3536        self.__graph = graph   
     37    """ 
    3638 
    3739    def _write_cell_text(self, cr, text, bold, y=19): 
     
    138140            self._write_cell_text(cr, self.selection.month + ", 2007", True) 
    139141            self._write_cell_text(cr, "Events Statistics", False, 40) 
    140  
    141             #self._draw_graph(cr, False, 1, level) 
    142142        else: 
    143143            self._draw_raw(cr, level) 
    144             #self._draw_graph(cr, True, 1, level) 
    145144             
    146145 
     
    190189         
    191190 
    192     selection = property(get_selection, set_selection) 
    193     graph = property(get_graph, set_graph) 
     191    #selection = property(get_selection, set_selection) 
     192    #graph = property(get_graph, set_graph) 
    194193 
    195194