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
Utilities
Konsole
Commits
179b1739
Commit
179b1739
authored
Sep 21, 2021
by
Martin Tobias Holmedahl Sandsmark
Committed by
Kurt Hindenburg
Sep 21, 2021
Browse files
Fix memory leak
parent
bfe197b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/SSHManager/sshmanagerpluginwidget.cpp
View file @
179b1739
...
...
@@ -56,7 +56,7 @@ SSHManagerTreeWidget::SSHManagerTreeWidget(QWidget *parent)
// System and User ports see:
// https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml
const
auto
*
portValidator
=
new
QIntValidator
(
0
,
49151
);
const
auto
*
portValidator
=
new
QIntValidator
(
0
,
49151
,
this
);
ui
->
port
->
setValidator
(
portValidator
);
connect
(
ui
->
newSSHConfig
,
&
QPushButton
::
clicked
,
this
,
&
SSHManagerTreeWidget
::
showInfoPane
);
...
...
Write
Preview
Supports
Markdown
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