diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2017-12-09 22:59:21 +0100 |
---|---|---|
committer | Robert C. Helling <helling@atdotde.de> | 2017-12-10 15:00:53 +0100 |
commit | a07d3b7bfe30f92df8d7e12d364db5aec0a18e46 (patch) | |
tree | 3416d350883b6fc104b5edc00e73326a6d4ab9bc /qt-models/divepicturemodel.h | |
parent | 2e340d3a61243c0bd42a6ba1639b66bbb340cee6 (diff) | |
download | subsurface-a07d3b7bfe30f92df8d7e12d364db5aec0a18e46.tar.gz |
Whitespace fixes in qt-models/divepicturemodel.cpp
Note that constructs like QList<QFuture<void>> is incompatible with
pre-C++11 compilers. But the code base is so full of C++11isms that
we may just as well remove asymmetric eye-sores of the kind
"QList<QFuture<void> >".
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'qt-models/divepicturemodel.h')
-rw-r--r-- | qt-models/divepicturemodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-models/divepicturemodel.h b/qt-models/divepicturemodel.h index b00444548..b0494d355 100644 --- a/qt-models/divepicturemodel.h +++ b/qt-models/divepicturemodel.h @@ -26,7 +26,7 @@ public: virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; virtual int rowCount(const QModelIndex &parent = QModelIndex()) const; virtual void updateDivePictures(); - void updateDivePicturesWhenDone(QList<QFuture<void> >); + void updateDivePicturesWhenDone(QList<QFuture<void>>); void removePicture(const QString& fileUrl, bool last); protected: |