diff options
author | Henrik Brautaset Aronsen <subsurface@henrik.synth.no> | 2013-05-14 09:28:30 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-05-14 05:24:28 -0400 |
commit | f9598f062cf8684dd92ac56530c3758e3b1a6d9d (patch) | |
tree | 32937d06e1caf37b8693fb899f10226b15ab0e71 /qt-ui/models.h | |
parent | c07e183f1f313316a411cfa4aac09379092add7d (diff) | |
download | subsurface-f9598f062cf8684dd92ac56530c3758e3b1a6d9d.tar.gz |
Clean up some typos
Cosmetic commit to clean up some of the annoying typos in qt-ui
Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/models.h')
-rw-r--r-- | qt-ui/models.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/qt-ui/models.h b/qt-ui/models.h index 307cdf5c3..ac533fd71 100644 --- a/qt-ui/models.h +++ b/qt-ui/models.h @@ -14,7 +14,7 @@ #include "../divelist.h" /* Encapsulates the tank_info global variable - * to show on Qt`s Model View System.*/ + * to show on Qt's Model View System.*/ class TankInfoModel : public QAbstractTableModel { Q_OBJECT public: @@ -50,9 +50,9 @@ public: void clear(); void update(); private: - /* Since the dive doesn`t stores the number of cylinders that - * it has ( max 8 ) and since I don`t want to make a - * model-for-each-dive, let`s hack this here instead. */ + /* Since the dive doesn't stores the number of cylinders that + * it has (max 8) and since I don't want to make a + * model-for-each-dive, let's hack this here instead. */ QMap<struct dive *, int> usedRows; }; @@ -94,7 +94,7 @@ public: virtual QVariant data ( int column, int role ) const; int row() const; - QList<TreeItemDT *> childs; + QList<TreeItemDT *> children; TreeItemDT *parent; }; |