Changeset cc4f0b2 in sasview
- Timestamp:
- Aug 15, 2011 9:07:26 AM (13 years ago)
- 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:
- 82a9f90
- Parents:
- 9905d79
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
simview/SimView.py
r9905d79 rcc4f0b2 29 29 30 30 31 class S ansViewApp(gui_manager.ViewApp):31 class SimViewApp(gui_manager.ViewApp): 32 32 """ 33 33 """ 34 34 35 class S ansView():35 class SimView(): 36 36 37 37 def __init__(self): … … 40 40 """ 41 41 #from gui_manager import ViewApp 42 self.gui = S ansViewApp(0)42 self.gui = SimViewApp(0) 43 43 44 44 # Add perspectives to the basic application … … 63 63 64 64 if __name__ == "__main__": 65 sansview = S ansView()65 sansview = SimView()
Note: See TracChangeset
for help on using the changeset viewer.