Ignore:
Timestamp:
Apr 25, 2013 2:16:58 PM (11 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
523f828
Parents:
8833c77
Message:

Instead of mdi, use wxframe on linux

File:
1 edited

Legend:

Unmodified
Added
Removed
  • calculatorview/src/sans/perspectives/calculator/slit_length_calculator_panel.py

    re35534f rd0923a3  
    1919from calculator_widgets import OutputTextCtrl 
    2020from calculator_widgets import InterActiveOutputTextCtrl 
     21from sans.perspectives.calculator import calculator_widgets as widget    
    2122 
    2223_BOX_WIDTH = 76 
     
    251252     
    252253     
    253 class SlitLengthCalculatorWindow(wx.MDIChildFrame): 
     254class SlitLengthCalculatorWindow(widget.CHILD_FRAME): 
    254255    """ 
    255256    """ 
     
    260261        kwds['size']= size 
    261262        kwds['title']= title 
    262         wx.MDIChildFrame.__init__(self, parent, *args, **kwds) 
     263        widget.CHILD_FRAME.__init__(self, parent, *args, **kwds) 
    263264        self.parent = parent 
    264265        self.manager = manager 
Note: See TracChangeset for help on using the changeset viewer.