Changeset f1e80df in sasview


Ignore:
Timestamp:
Feb 28, 2015 9:13:30 PM (9 years ago)
Author:
butler
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:
c558b47
Parents:
3f5d75b
Message:

Removed old help function code that is no longer used

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/perspectives/calculator/calculator.py

    rb9a5f0e rf1e80df  
    5151         
    5252         
    53     def help(self, evt): 
    54         """ 
    55         Show a general help dialog.  
    56          
    57         :TODO: replace the text with a nice image 
    58             provide more hint on the SLD calculator 
    59         """ 
    60         from help_panel import  HelpWindow 
    61         frame = HelpWindow(None, -1)  
    62         if hasattr(frame, "IsIconized"): 
    63             if not frame.IsIconized(): 
    64                 try: 
    65                     icon = self.parent.GetIcon() 
    66                     frame.SetIcon(icon) 
    67                 except: 
    68                     pass   
    69         frame.Show(True) 
    70  
    7153    def get_tools(self): 
    7254        """ 
Note: See TracChangeset for help on using the changeset viewer.