Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Merge requests
!2669
ComboProperty: rm many unused member fcts and operators
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
ComboProperty: rm many unused member fcts and operators
j.0
into
main
Overview
0
Commits
13
Pipelines
2
Changes
1
Merged
Wuttke, Joachim
requested to merge
j.0
into
main
8 months ago
Overview
0
Commits
13
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Viewing commit
f9a37a6c
Prev
Next
Show latest version
1 file
+
3
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
f9a37a6c
format
· f9a37a6c
Wuttke, Joachim
authored
8 months ago
GUI/Model/Tune/FitParameterItem.cpp
+
3
−
5
Options
@@ -137,11 +137,9 @@ ComboProperty fitParameterTypeCombo()
auto
result
=
ComboProperty
::
fromList
({
"fixed"
,
"limited"
,
"lower limited"
,
"upper limited"
,
"free"
});
result
.
setCurrentValue
(
"limited"
);
result
.
setToolTips
({
"Fixed at given value"
,
"Limited in the range [min, max]"
,
"Limited at lower bound [min, inf]"
,
"Limited at upper bound [-inf, max]"
,
"No limits imposed to parameter value"
});
result
.
setToolTips
({
"Fixed at given value"
,
"Limited in the range [min, max]"
,
"Limited at lower bound [min, inf]"
,
"Limited at upper bound [-inf, max]"
,
"No limits imposed to parameter value"
});
return
result
;
}
Loading