summaryrefslogtreecommitdiffstats
path: root/qt-ui/divelistview.cpp
blob: fb19a7060bab4de21e20ad16c533b7287f1a893b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * divelistview.cpp
 *
 * classes for the divelist of Subsurface
 *
 */
#include "divelistview.h"
#include "models.h"
#include "modeldelegates.h"

DiveListView::DiveListView(QWidget *parent) : QTreeView(parent)
{
	setUniformRowHeights(true);
	setItemDelegateForColumn(DiveTripModel::RATING, new StarWidgetsDelegate());
}