diff options
author | Anton Lundin <glance@acc.umu.se> | 2015-05-27 21:19:11 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-05-27 15:37:37 -0700 |
commit | 4124052b38f4c2e2f8bef40ebc74d6bbd35382af (patch) | |
tree | 9b3b8a512f072afaba66d13856a1b542165ede62 /configuredivecomputerthreads.h | |
parent | f7be6daacc91fd17291398d070825a49f6991ba1 (diff) | |
download | subsurface-4124052b38f4c2e2f8bef40ebc74d6bbd35382af.tar.gz |
Remove the lastError from DeviceThreads
There is no reason for the DeviceThreads to keep a copy of the last
error around, so this removes that code.
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'configuredivecomputerthreads.h')
-rw-r--r-- | configuredivecomputerthreads.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/configuredivecomputerthreads.h b/configuredivecomputerthreads.h index 7aa9cb298..1d7a36f9b 100644 --- a/configuredivecomputerthreads.h +++ b/configuredivecomputerthreads.h @@ -13,7 +13,6 @@ class DeviceThread : public QThread { public: DeviceThread(QObject *parent, device_data_t *data); virtual void run() = 0; - QString lastError; signals: void error(QString err); void progress(int value); |