kopia lustrzana https://github.com/f4exb/sdrangel
				
				
				
			
		
			
				
	
	
		
			16 wiersze
		
	
	
		
			299 B
		
	
	
	
		
			C++
		
	
	
			
		
		
	
	
			16 wiersze
		
	
	
		
			299 B
		
	
	
	
		
			C++
		
	
	
#include "recordinfodialog.h"
 | 
						|
#include "ui_recordinfodialog.h"
 | 
						|
 | 
						|
RecordInfoDialog::RecordInfoDialog(const QString& text, QWidget* parent) :
 | 
						|
	QDialog(parent),
 | 
						|
	ui(new Ui::RecordInfoDialog)
 | 
						|
{
 | 
						|
	ui->setupUi(this);
 | 
						|
    ui->infoText->setText(text);
 | 
						|
}
 | 
						|
 | 
						|
RecordInfoDialog::~RecordInfoDialog()
 | 
						|
{
 | 
						|
	delete ui;
 | 
						|
}
 |