Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Plasma Add-ons
Commits
e7c78fd6
Commit
e7c78fd6
authored
Jan 03, 2021
by
Alexander Lohnau
Browse files
Port last Qt4 connects/remove non-existent one
parent
55cd2fef
Changes
2
Hide whitespace changes
Inline
Side-by-side
applets/comic/comicarchivedialog.cpp
View file @
e7c78fd6
...
...
@@ -73,9 +73,8 @@ ComicArchiveDialog::ComicArchiveDialog( const QString &pluginName, const QString
ui
.
dest
->
setStartDir
(
QUrl
::
fromLocalFile
(
savingDir
));
}
connect
(
ui
.
archiveType
,
SIGNAL
(
currentIndexChanged
(
int
)
),
this
,
SLOT
(
archiveTypeChanged
(
int
))
);
connect
(
ui
.
archiveType
,
qOverload
<
int
>
(
&
KComboBox
::
currentIndexChanged
),
this
,
&
ComicArchiveDialog
::
archiveTypeChanged
);
connect
(
ui
.
dest
,
&
KUrlRequester
::
textChanged
,
this
,
&
ComicArchiveDialog
::
updateOkButton
);
connect
(
this
,
SIGNAL
(
okClicked
()),
this
,
SLOT
(
slotOkClicked
())
);
}
void
ComicArchiveDialog
::
archiveTypeChanged
(
int
newType
)
...
...
runners/dictionary/dictionaryrunner_config.cpp
View file @
e7c78fd6
...
...
@@ -21,7 +21,7 @@ DictionaryRunnerConfig::DictionaryRunnerConfig(QWidget* parent, const QVariantLi
m_triggerWord
=
new
QLineEdit
;
layout
->
addRow
(
i18nc
(
"@label:textbox"
,
"Trigger word:"
),
m_triggerWord
);
setLayout
(
layout
);
connect
(
m_triggerWord
,
SIGNAL
(
textChanged
(
QString
)),
this
,
SLOT
(
c
hanged
())
);
connect
(
m_triggerWord
,
&
QLineEdit
::
textChanged
,
this
,
&
DictionaryRunnerConfig
::
markAsC
hanged
);
load
();
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment