Remove unused variables and methods

Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Anton Lundin 2015-05-27 21:19:10 +02:00 committed by Dirk Hohndel
parent d850a67ce8
commit f7be6daacc

View file

@ -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;