summaryrefslogtreecommitdiff
path: root/src/libs/utils
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2011-09-16 11:28:41 +0200
committerhjk <qthjk@ovi.com>2011-09-16 11:34:54 +0200
commitaea628a9733788bf42091a55627aaa815040ae1c (patch)
treefdc729f79b8d6cf4a7e8ea56daed9ef6ef0e9ad9 /src/libs/utils
parentc6a8b39a0361c3bd8e67a34f5f1f23790d348e9a (diff)
downloadqt-creator-aea628a9733788bf42091a55627aaa815040ae1c.tar.gz
whitespace
Change-Id: I67b156ab6f44ccdfe199b4928f6f62129b05b0b7 Reviewed-on: http://codereview.qt-project.org/5074 Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/libs/utils')
-rw-r--r--src/libs/utils/ssh/sftpoperation_p.h2
-rw-r--r--src/libs/utils/ssh/sshchannel_p.h18
-rw-r--r--src/libs/utils/ssh/sshcryptofacility_p.h2
3 files changed, 11 insertions, 11 deletions
diff --git a/src/libs/utils/ssh/sftpoperation_p.h b/src/libs/utils/ssh/sftpoperation_p.h
index 50afa4bc16..ff51c2e871 100644
--- a/src/libs/utils/ssh/sftpoperation_p.h
+++ b/src/libs/utils/ssh/sftpoperation_p.h
@@ -59,7 +59,7 @@ struct AbstractSftpOperation
AbstractSftpOperation(SftpJobId jobId);
virtual ~AbstractSftpOperation();
virtual Type type() const = 0;
- virtual SftpOutgoingPacket &initialPacket(SftpOutgoingPacket &packet)=0;
+ virtual SftpOutgoingPacket &initialPacket(SftpOutgoingPacket &packet) = 0;
const SftpJobId jobId;
diff --git a/src/libs/utils/ssh/sshchannel_p.h b/src/libs/utils/ssh/sshchannel_p.h
index 6c4dd9a682..91def05ebc 100644
--- a/src/libs/utils/ssh/sshchannel_p.h
+++ b/src/libs/utils/ssh/sshchannel_p.h
@@ -64,10 +64,10 @@ public:
quint32 localChannelId() const { return m_localChannel; }
quint32 remoteChannel() const { return m_remoteChannel; }
- virtual void handleChannelSuccess()=0;
- virtual void handleChannelFailure()=0;
+ virtual void handleChannelSuccess() = 0;
+ virtual void handleChannelFailure() = 0;
- virtual void closeHook()=0;
+ virtual void closeHook() = 0;
void handleOpenSuccess(quint32 remoteChannelId, quint32 remoteWindowSize,
quint32 remoteMaxPacketSize);
@@ -100,13 +100,13 @@ protected:
QTimer * const m_timeoutTimer;
private:
- virtual void handleOpenSuccessInternal()=0;
- virtual void handleOpenFailureInternal()=0;
- virtual void handleChannelDataInternal(const QByteArray &data)=0;
+ virtual void handleOpenSuccessInternal() = 0;
+ virtual void handleOpenFailureInternal() = 0;
+ virtual void handleChannelDataInternal(const QByteArray &data) = 0;
virtual void handleChannelExtendedDataInternal(quint32 type,
- const QByteArray &data)=0;
- virtual void handleExitStatus(const SshChannelExitStatus &exitStatus)=0;
- virtual void handleExitSignal(const SshChannelExitSignal &signal)=0;
+ const QByteArray &data) = 0;
+ virtual void handleExitStatus(const SshChannelExitStatus &exitStatus) = 0;
+ virtual void handleExitSignal(const SshChannelExitSignal &signal) = 0;
void setState(ChannelState newState);
void flushSendBuffer();
diff --git a/src/libs/utils/ssh/sshcryptofacility_p.h b/src/libs/utils/ssh/sshcryptofacility_p.h
index 3059b47253..a7a66fb53d 100644
--- a/src/libs/utils/ssh/sshcryptofacility_p.h
+++ b/src/libs/utils/ssh/sshcryptofacility_p.h
@@ -80,7 +80,7 @@ private:
virtual Botan::BlockCipherMode *makeCipherMode(Botan::BlockCipher *cipher,
Botan::BlockCipherModePaddingMethod *paddingMethod,
const Botan::InitializationVector &iv,
- const Botan::SymmetricKey &key)=0;
+ const Botan::SymmetricKey &key) = 0;
virtual char ivChar() const = 0;
virtual char keyChar() const = 0;
virtual char macChar() const = 0;