Random whitespace cleanup

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2014-11-13 12:51:23 -08:00
parent 8086b39e11
commit ac9ead4571
4 changed files with 15 additions and 13 deletions

View file

@ -93,9 +93,11 @@ public:
virtual bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
void addFilterModel(MultiFilterInterface *model);
void removeFilterModel(MultiFilterInterface *model);
public slots:
public
slots:
void myInvalidate();
void clearFilter();
private:
MultiFilterSortModel(QObject *parent = 0);
QList<MultiFilterInterface *> models;

View file

@ -71,8 +71,7 @@ const QPixmap &trashIcon()
return *trashIconPixmap;
}
CylindersModel::CylindersModel(QObject *parent) :
changed(false),
CylindersModel::CylindersModel(QObject *parent) : changed(false),
rows(0)
{
// enum {REMOVE, TYPE, SIZE, WORKINGPRESS, START, END, O2, HE, DEPTH};

View file

@ -179,6 +179,7 @@ public:
void clear();
void updateDive();
private:
int rows;
};