Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Calculators/KiessigPanel.py

    re90988c rfbfc488  
    3838        documentation tree (after /doc/ ....". 
    3939        """ 
    40         location = "/user/sasgui/perspectives/calculator/kiessig_calculator_help.html" 
    41         self.manager.showHelp(location) 
     40        try: 
     41            location = GuiUtils.HELP_DIRECTORY_LOCATION + \ 
     42                "/user/sasgui/perspectives/calculator/kiessig_calculator_help.html" 
     43 
     44            self.manager._helpView.load(QtCore.QUrl(location)) 
     45            self.manager._helpView.show() 
     46        except AttributeError: 
     47            # No manager defined - testing and standalone runs 
     48            pass 
    4249 
    4350    def onCompute(self): 
Note: See TracChangeset for help on using the changeset viewer.