mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 21:20:31 -05:00 
			
		
		
		
	
		
			
	
	
		
			16 lines
		
	
	
		
			299 B
		
	
	
	
		
			C++
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			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;
							 | 
						||
| 
								 | 
							
								}
							 |