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
Utilities
Konsole
Commits
a854a02b
Commit
a854a02b
authored
Nov 29, 2021
by
Tomaz Canabrava
Browse files
Fix letter case
parent
33918fe3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/SSHManager/sshmanagermodel.cpp
View file @
a854a02b
...
...
@@ -54,7 +54,7 @@ QStandardItem *SSHManagerModel::addTopLevelItem(const QString &name)
auto
*
newItem
=
new
QStandardItem
();
newItem
->
setText
(
name
);
newItem
->
setToolTip
(
i18n
(
"%1 is a folder for SSH
E
ntries"
,
name
));
newItem
->
setToolTip
(
i18n
(
"%1 is a folder for SSH
e
ntries"
,
name
));
invisibleRootItem
()
->
appendRow
(
newItem
);
invisibleRootItem
()
->
sortChildren
(
0
);
return
newItem
;
...
...
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