diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-12-28 20:56:58 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-12-28 21:02:28 -0800 |
commit | b2f4896f3cf4361e9fc499cb8669eba0d114b4fa (patch) | |
tree | 729bb3153658548983dbb2d96983a1a11e7617ab /configuredivecomputer.h | |
parent | 4559a26e316931695f892b205257979f0ea13afa (diff) | |
download | subsurface-b2f4896f3cf4361e9fc499cb8669eba0d114b4fa.tar.gz |
Whitespace cleanup
Plus removal of a few qDebug() calls I introduced earlier.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'configuredivecomputer.h')
-rw-r--r-- | configuredivecomputer.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/configuredivecomputer.h b/configuredivecomputer.h index 66a9bf5f5..6cc9b8fa5 100644 --- a/configuredivecomputer.h +++ b/configuredivecomputer.h @@ -10,24 +10,23 @@ #include "libxml/xmlreader.h" -class ConfigureDiveComputer : public QObject -{ +class ConfigureDiveComputer : public QObject { Q_OBJECT public: explicit ConfigureDiveComputer(); void readSettings(device_data_t *data); enum states { - INITIAL, - READING, - WRITING, - RESETTING, - FWUPDATE, - CANCELLING, - CANCELLED, - ERROR, - DONE, - }; + INITIAL, + READING, + WRITING, + RESETTING, + FWUPDATE, + CANCELLING, + CANCELLED, + ERROR, + DONE, + }; QString lastError; states currentState; @@ -50,7 +49,8 @@ private: ResetSettingsThread *resetThread; FirmwareUpdateThread *firmwareThread; void setState(states newState); -private slots: +private +slots: void readThreadFinished(); void writeThreadFinished(); void resetThreadFinished(); |