diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-02-10 20:28:33 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-02-11 12:34:34 -0800 |
commit | d49acdb3c0298ab3c2493db70d81c4731d6f3fcb (patch) | |
tree | dd11f7172fc4141f1506b23c691fa7443144cf29 /qt-ui/profile/diveprofileitem.h | |
parent | 829473ddc64e50169fbc177c6ee5ce2bf702a3ed (diff) | |
download | subsurface-d49acdb3c0298ab3c2493db70d81c4731d6f3fcb.tar.gz |
Clean up include files
They should have a newline at the end.
Forward declarations of classes should be 'class'.
Function / method definitions don't end on a ';'
Remove obsolete QStateMachine forward reference.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/diveprofileitem.h')
-rw-r--r-- | qt-ui/profile/diveprofileitem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/profile/diveprofileitem.h b/qt-ui/profile/diveprofileitem.h index b47cbd513..41213658d 100644 --- a/qt-ui/profile/diveprofileitem.h +++ b/qt-ui/profile/diveprofileitem.h @@ -41,7 +41,7 @@ public: void setHorizontalDataColumn(int column); void setVerticalDataColumn(int column); virtual void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget = 0) = 0; - virtual void clear(){}; + virtual void clear(){} public slots: virtual void preferencesChanged(); virtual void modelDataChanged(const QModelIndex& topLeft = QModelIndex(), const QModelIndex& bottomRight = QModelIndex()); |