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
Commits
ba97bb4b
Commit
ba97bb4b
authored
1 year ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
connect to lambda
parent
9dd5aca3
No related branches found
No related tags found
1 merge request
!2265
cleanup connect%s
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
GUI/View/FitControl/RunFitControlWidget.cpp
+1
-2
1 addition, 2 deletions
GUI/View/FitControl/RunFitControlWidget.cpp
GUI/View/FitControl/RunFitControlWidget.h
+1
-3
1 addition, 3 deletions
GUI/View/FitControl/RunFitControlWidget.h
with
2 additions
and
5 deletions
GUI/View/FitControl/RunFitControlWidget.cpp
+
1
−
2
View file @
ba97bb4b
...
@@ -88,8 +88,7 @@ RunFitControlWidget::RunFitControlWidget()
...
@@ -88,8 +88,7 @@ RunFitControlWidget::RunFitControlWidget()
connect
(
m_startButton
,
&
QPushButton
::
clicked
,
[
&
]
{
emit
startFittingPushed
();
});
connect
(
m_startButton
,
&
QPushButton
::
clicked
,
[
&
]
{
emit
startFittingPushed
();
});
connect
(
m_stopButton
,
&
QPushButton
::
clicked
,
[
&
]
{
emit
stopFittingPushed
();
});
connect
(
m_stopButton
,
&
QPushButton
::
clicked
,
[
&
]
{
emit
stopFittingPushed
();
});
connect
(
m_updButton
,
&
QPushButton
::
clicked
,
[
&
]
{
emit
updFromTreePushed
();
});
connect
(
m_updButton
,
&
QPushButton
::
clicked
,
[
&
]
{
emit
updFromTreePushed
();
});
connect
(
m_intervalSlider
,
&
QSlider
::
valueChanged
,
this
,
connect
(
m_intervalSlider
,
&
QSlider
::
valueChanged
,
[
&
](
int
i
)
{
onSliderValueChanged
(
i
);
});
&
RunFitControlWidget
::
onSliderValueChanged
);
setEnabled
(
false
);
setEnabled
(
false
);
}
}
...
...
This diff is collapsed.
Click to expand it.
GUI/View/FitControl/RunFitControlWidget.h
+
1
−
3
View file @
ba97bb4b
...
@@ -44,10 +44,8 @@ signals:
...
@@ -44,10 +44,8 @@ signals:
public
slots
:
public
slots
:
void
onFittingError
(
const
QString
&
what
);
void
onFittingError
(
const
QString
&
what
);
private
slots
:
void
onSliderValueChanged
(
int
value
);
private:
private:
void
onSliderValueChanged
(
int
value
);
int
sliderUpdateInterval
();
int
sliderUpdateInterval
();
int
sliderValueToUpdateInterval
(
int
value
);
int
sliderValueToUpdateInterval
(
int
value
);
int
updateIntervalToSliderValue
(
int
updInterval
);
int
updateIntervalToSliderValue
(
int
updInterval
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment