Changeset 3861

Show
Ignore:
Timestamp:
01/12/08 05:44:08 (10 months ago)
Author:
ed
Message:

Removed the debugging output.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ide/MenuDesignerComponents.py

    r3859 r3861  
    117117     
    118118    def getBack(self): 
    119         print "BACK", 
    120119        try: 
    121120            print self.Caption 
    122121        except AttributeError: 
    123122            print self.Shape, self 
    124         print "SELECTED:", self._selected 
    125123        if self._selected: 
    126124            ret = self._selectedBackColor 
    127125        else: 
    128126            ret = self._unselectedBackColor 
    129         print "RETURNING", ret 
    130         print 
    131127        return ret 
    132128 
     
    174170            addlwd += self._captionHotKeySpacing 
    175171        calc = capwd + hkwd + addlwd 
    176          
    177         print "WID", self.Caption, calc 
    178172        if curr < calc: 
    179173            self.Width = calc 
     
    205199        super(CaptionPanel, self).refresh() 
    206200        self.setWidth() 
    207         print "PAR UP REF", self, self.Parent 
    208201        self.Parent.update() 
    209202        self.Parent.layout() 
     
    389382    def _setSelected(self, val): 
    390383        if self._constructed(): 
    391             print "SETSEL", self.Caption, val 
    392384            self._selected = val 
    393385#           self.clear() 
  • trunk/ide/MenuDesignerForm.py

    r3859 r3861  
    195195         
    196196    def select(self, obj): 
    197         try: print "SELE", obj.Caption 
    198         except: print "SELE NONE" 
    199197        if obj is self._selection: 
    200             print "SAME" 
    201198            return 
    202199        self.lockDisplay() 
    203200        if self._selection is not None: 
    204             print "UNSEL", self._selection.Caption 
    205201            self._selection.Selected = False 
    206202        self._selection = obj 
    207203        self.PropForm.select(obj) 
    208         print "OBJ.SELECTED" 
    209204        obj.Selected = True 
    210         try: print "ENSURE", obj.Caption 
    211         except: print "eENSEURE NONE" 
    212  
    213205        self.ensureVisible(obj) 
    214206        dabo.ui.callAfterInterval(100, self._selectAfter) 
    215207    def _selectAfter(self): 
    216         try: print "SELE AFT", self._selection.Caption 
    217         except: print "SELE AFT NONE" 
    218208        self.update() 
    219209        self.refresh()