diff options
author | Christian Kandeler <[email protected]> | 2011-09-15 09:10:10 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2011-09-15 10:33:56 +0200 |
commit | 8801c76a8e223b6f41a8369e75c71b67237d8d25 (patch) | |
tree | 813d0922e56bb1dbf13a4bb14a3be19dbf295619 /src/plugins/remotelinux/remotelinuxapplicationrunner.h | |
parent | 63e8b9075b3a1d502cdcbb63cb2b19e0e6208263 (diff) |
Coding style: Pure virtual functions, private implementation pointers.
Change-Id: I293f8dbd4e467e866bab381841659a07e32b9d90
Reviewed-on: http://codereview.qt-project.org/4948
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/remotelinux/remotelinuxapplicationrunner.h')
-rw-r--r-- | src/plugins/remotelinux/remotelinuxapplicationrunner.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/remotelinux/remotelinuxapplicationrunner.h b/src/plugins/remotelinux/remotelinuxapplicationrunner.h index 9dc2732e944..40aa95a7e3f 100644 --- a/src/plugins/remotelinux/remotelinuxapplicationrunner.h +++ b/src/plugins/remotelinux/remotelinuxapplicationrunner.h @@ -105,7 +105,7 @@ private slots: private: - virtual QString killApplicationCommandLine() const=0; + virtual QString killApplicationCommandLine() const = 0; // Implement to do custom setup of the device *before* connecting. // Call handleDeviceSetupDone() afterwards. @@ -127,7 +127,7 @@ private: void emitError(const QString &errorMsg, bool force = false); void cleanup(); - Internal::AbstractRemoteLinuxApplicationRunnerPrivate * const m_d; + Internal::AbstractRemoteLinuxApplicationRunnerPrivate * const d; }; |