diff options
author | hjk <hjk121@nokiamail.com> | 2014-02-12 18:48:47 +0100 |
---|---|---|
committer | hjk <hjk121@nokiamail.com> | 2014-02-13 11:57:07 +0100 |
commit | 31ca3d65b273934187877ec6d81719ff5393e101 (patch) | |
tree | 904eba16f2aeae6e1e7a666217654de65ee7d7a7 | |
parent | cd35d16983708c2fca95bb584ca5cf992dd69b90 (diff) | |
download | qt-creator-31ca3d65b273934187877ec6d81719ff5393e101.tar.gz |
RemoteLinux: Remove unneeded data member
Change-Id: Ic827813aa4f4acef7c6a1426dc645cbe0be05b86
Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
-rw-r--r-- | src/plugins/remotelinux/remotelinuxrunconfiguration.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/plugins/remotelinux/remotelinuxrunconfiguration.cpp b/src/plugins/remotelinux/remotelinuxrunconfiguration.cpp index 8c4744c659..2e5d1b7d37 100644 --- a/src/plugins/remotelinux/remotelinuxrunconfiguration.cpp +++ b/src/plugins/remotelinux/remotelinuxrunconfiguration.cpp @@ -64,7 +64,6 @@ public: RemoteLinuxRunConfigurationPrivate(const RemoteLinuxRunConfigurationPrivate *other) : projectFilePath(other->projectFilePath), - gdbPath(other->gdbPath), arguments(other->arguments), useAlternateRemoteExecutable(other->useAlternateRemoteExecutable), alternateRemoteExecutable(other->alternateRemoteExecutable), @@ -73,7 +72,6 @@ public: } QString projectFilePath; - QString gdbPath; QStringList arguments; bool useAlternateRemoteExecutable; QString alternateRemoteExecutable; |