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>
This commit is contained in:
Henrik Brautaset Aronsen 2013-05-14 09:28:30 +02:00 committed by Dirk Hohndel
parent c07e183f1f
commit f9598f062c
5 changed files with 20 additions and 20 deletions

View file

@ -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;
};