mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 13:11:20 -05: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;
							 | 
						||
| 
								 | 
							
								}
							 |