blob: 752644e27f1f474a3c7eb0f5072450b76e74d4de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#include "profilewidget2.h"
ProfileWidget2::ProfileWidget2(QWidget *parent)
{
}
// Currently just one dive, but the plan is to enable All of the selected dives.
void ProfileWidget2::plotDives(QList<dive*> dives)
{
}
void ProfileWidget2::settingsChanged()
{
}
void ProfileWidget2::contextMenuEvent(QContextMenuEvent* event)
{
}
void ProfileWidget2::resizeEvent(QResizeEvent* event)
{
}
void ProfileWidget2::showEvent(QShowEvent* event)
{
}
|