Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
PimCommon
Commits
3b4948f1
Commit
3b4948f1
authored
Sep 26, 2021
by
Laurent Montel
😁
Browse files
Remove some qOverload as we remove deprecated qt5.15 signal
parent
f5dd396f
Pipeline
#82754
canceled with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/pimcommon/translator/translatorwidget.cpp
View file @
3b4948f1
...
@@ -297,11 +297,11 @@ void TranslatorWidget::init()
...
@@ -297,11 +297,11 @@ void TranslatorWidget::init()
slotFromLanguageChanged
(
0
,
true
);
slotFromLanguageChanged
(
0
,
true
);
slotTextChanged
();
slotTextChanged
();
readConfig
();
readConfig
();
connect
(
d
->
from
,
qOverload
<
int
>
(
&
QComboBox
::
currentIndexChanged
)
,
this
,
[
this
](
int
val
)
{
connect
(
d
->
from
,
&
QComboBox
::
currentIndexChanged
,
this
,
[
this
](
int
val
)
{
slotFromLanguageChanged
(
val
,
false
);
slotFromLanguageChanged
(
val
,
false
);
slotConfigChanged
();
slotConfigChanged
();
});
});
connect
(
d
->
to
,
qOverload
<
int
>
(
&
QComboBox
::
currentIndexChanged
)
,
this
,
[
this
]()
{
connect
(
d
->
to
,
&
QComboBox
::
currentIndexChanged
,
this
,
[
this
]()
{
slotConfigChanged
();
slotConfigChanged
();
slotTranslate
();
slotTranslate
();
});
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment