mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			555 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			555 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
#include "TabDiveExtraInfo.h"
 | 
						|
#include "ui_TabDiveExtraInfo.h"
 | 
						|
 | 
						|
#include <qt-models/divecomputerextradatamodel.h>
 | 
						|
 | 
						|
TabDiveExtraInfo::TabDiveExtraInfo(QWidget *parent) :
 | 
						|
	TabBase(parent),
 | 
						|
	ui(new Ui::TabDiveExtraInfo()),
 | 
						|
	extraDataModel(new ExtraDataModel())
 | 
						|
{
 | 
						|
	ui->setupUi(this);
 | 
						|
	ui->extraData->setModel(extraDataModel);
 | 
						|
}
 | 
						|
 | 
						|
TabDiveExtraInfo::~TabDiveExtraInfo()
 | 
						|
{
 | 
						|
	delete ui;
 | 
						|
}
 | 
						|
 | 
						|
void TabDiveExtraInfo::updateData()
 | 
						|
{
 | 
						|
	extraDataModel->updateDive();
 | 
						|
}
 | 
						|
 | 
						|
void TabDiveExtraInfo::clear()
 | 
						|
{
 | 
						|
	extraDataModel->updateDive();
 | 
						|
}
 | 
						|
 |