mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-30 12:30:20 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			214 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			214 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "gui/aboutdialog.h"
 | |
| #include "ui_aboutdialog.h"
 | |
| 
 | |
| AboutDialog::AboutDialog(QWidget* parent) :
 | |
| 	QDialog(parent),
 | |
| 	ui(new Ui::AboutDialog)
 | |
| {
 | |
| 	ui->setupUi(this);
 | |
| }
 | |
| 
 | |
| AboutDialog::~AboutDialog()
 | |
| {
 | |
| 	delete ui;
 | |
| }
 |