Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Network
KDE Connect
Commits
237975da
Verified
Commit
237975da
authored
Aug 06, 2020
by
Felix Yan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct typos in sftp plugin
parent
f1b3c0e0
Pipeline
#29914
passed with stage
in 6 minutes and 58 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
plugins/sftp/mounter.cpp
plugins/sftp/mounter.cpp
+1
-1
plugins/sftp/mountloop.cpp
plugins/sftp/mountloop.cpp
+1
-1
plugins/sftp/mountloop.h
plugins/sftp/mountloop.h
+1
-1
No files found.
plugins/sftp/mounter.cpp
View file @
237975da
...
...
@@ -69,7 +69,7 @@ bool Mounter::wait()
qCDebug
(
KDECONNECT_PLUGIN_SFTP
)
<<
"Starting loop to wait for mount"
;
MountLoop
loop
;
connect
(
this
,
&
Mounter
::
mounted
,
&
loop
,
&
MountLoop
::
succe
ss
ed
);
connect
(
this
,
&
Mounter
::
mounted
,
&
loop
,
&
MountLoop
::
succe
ed
ed
);
connect
(
this
,
&
Mounter
::
failed
,
&
loop
,
&
MountLoop
::
failed
);
return
loop
.
exec
();
}
...
...
plugins/sftp/mountloop.cpp
View file @
237975da
...
...
@@ -35,7 +35,7 @@ void MountLoop::failed()
exit
(
1
);
}
void
MountLoop
::
succe
ss
ed
()
void
MountLoop
::
succe
ed
ed
()
{
Q_EMIT
result
(
true
);
exit
(
0
);
...
...
plugins/sftp/mountloop.h
View file @
237975da
...
...
@@ -36,7 +36,7 @@ Q_SIGNALS:
public
Q_SLOTS
:
void
failed
();
void
succe
ss
ed
();
void
succe
ed
ed
();
void
exitWith
(
bool
status
);
};
...
...
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