Skip to content

Commit

Permalink
src:Clean code formatting and remove unnecessary lines
Browse files Browse the repository at this point in the history
Signed-off-by: xiaoming <[email protected]>
  • Loading branch information
QQxiaoming committed Nov 23, 2023
1 parent fc32789 commit b95f598
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion lib/qtssh/sshkey.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
SshKey::SshKey(QObject *parent)
: QObject(parent)
{

}
2 changes: 1 addition & 1 deletion lib/qtssh/sshprocess.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SshProcess : public SshChannel
friend class SshClient;

public:
virtual ~SshProcess() override;
~SshProcess() override;
void close() override;
QByteArray result();
QStringList errMsg();
Expand Down
2 changes: 1 addition & 1 deletion lib/qtssh/sshscpget.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class SshScpGet : public SshChannel
friend class SshClient;

public:
virtual ~SshScpGet() override;
~SshScpGet() override;
void close() override;


Expand Down
2 changes: 1 addition & 1 deletion lib/qtssh/sshshell.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SshShell : public SshChannel
friend class SshClient;

public:
virtual ~SshShell() override;
~SshShell() override;
void close() override;
QStringList errMsg();
bool isError();
Expand Down

0 comments on commit b95f598

Please sign in to comment.