summaryrefslogtreecommitdiffstats
path: root/qt-ui/models.h
diff options
context:
space:
mode:
authorGravatar Henrik Brautaset Aronsen <subsurface@henrik.synth.no>2013-05-14 09:28:30 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-05-14 05:24:28 -0400
commitf9598f062cf8684dd92ac56530c3758e3b1a6d9d (patch)
tree32937d06e1caf37b8693fb899f10226b15ab0e71 /qt-ui/models.h
parentc07e183f1f313316a411cfa4aac09379092add7d (diff)
downloadsubsurface-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.h10
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;
};