From f7be6daacc91fd17291398d070825a49f6991ba1 Mon Sep 17 00:00:00 2001 From: Anton Lundin Date: Wed, 27 May 2015 21:19:10 +0200 Subject: [PATCH] Remove unused variables and methods Signed-off-by: Anton Lundin Signed-off-by: Dirk Hohndel --- configuredivecomputerthreads.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/configuredivecomputerthreads.h b/configuredivecomputerthreads.h index 254d286ba..7aa9cb298 100644 --- a/configuredivecomputerthreads.h +++ b/configuredivecomputerthreads.h @@ -13,11 +13,9 @@ class DeviceThread : public QThread { public: DeviceThread(QObject *parent, device_data_t *data); virtual void run() = 0; - QString result; QString lastError; signals: void error(QString err); - void message(QString msg); void progress(int value); protected: device_data_t *m_data;