Changeset cf9f39e in sasview
- Timestamp:
- Jan 9, 2019 8:16:00 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_sync_sascalc
- Children:
- c3fc919
- Parents:
- 33c0561
- Location:
- src/sas/qtgui/Perspectives/Fitting
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Perspectives/Fitting/ComplexConstraint.py
r33c0561 rcf9f39e 26 26 constraintReadySignal = QtCore.pyqtSignal(tuple) 27 27 def __init__(self, parent=None, tabs=None): 28 super(ComplexConstraint, self).__init__( )28 super(ComplexConstraint, self).__init__(parent) 29 29 30 30 self.setupUi(self) -
src/sas/qtgui/Perspectives/Fitting/FittingUtilities.py
r9817207 rcf9f39e 653 653 num_rows = model.rowCount() 654 654 if num_rows < 1: 655 return None655 return param 656 656 657 657 for row in range(num_rows): -
src/sas/qtgui/Perspectives/Fitting/MultiConstraint.py
r33c0561 rcf9f39e 26 26 params: tuple of strings describing model parameters 27 27 """ 28 super(MultiConstraint, self).__init__( )28 super(MultiConstraint, self).__init__(parent) 29 29 30 30 self.setupUi(self)
Note: See TracChangeset
for help on using the changeset viewer.