Ignore:
Timestamp:
May 18, 2017 3:36:57 AM (7 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
Branches:
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
Children:
6066a3f
Parents:
2a432e7
Message:

Removed qtgui dependency on sasgui and wx SASVIEW-590

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/MainWindow/GuiManager.py

    r2a432e7 rdc5ef15  
    1111 
    1212from twisted.internet import reactor 
     13 
    1314# General SAS imports 
    14  
    15 from sas.sasgui.guiframe.data_manager import DataManager 
    16 from sas.sasgui.guiframe.proxy import Connection 
     15from sas.qtgui.Utilities.ConnectionProxy import ConnectionProxy 
    1716from sas.qtgui.Utilities.SasviewLogger import XStream 
    1817from sas.qtgui.Utilities.IPythonWidget import IPythonWidget 
     
    2423from sas.qtgui.MainWindow.AboutBox import AboutBox 
    2524from sas.qtgui.MainWindow.WelcomePanel import WelcomePanel 
     25from sas.qtgui.MainWindow.DataManager import DataManager 
    2626 
    2727from sas.qtgui.Calculators.SldPanel import SldPanel 
     
    278278        """ 
    279279        version_info = {"version": "0.0.0"} 
    280         c = Connection(LocalConfig.__update_URL__, LocalConfig.UPDATE_TIMEOUT) 
     280        c = ConnectionProxy(LocalConfig.__update_URL__, LocalConfig.UPDATE_TIMEOUT) 
    281281        response = c.connect() 
    282282        if response is None: 
Note: See TracChangeset for help on using the changeset viewer.