mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 03:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			266 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			266 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "NewMaterialDialog.hpp"
 | 
						|
#include "ui_newmaterialdialog.h"
 | 
						|
 | 
						|
NewMaterialDialog::NewMaterialDialog(QWidget *parent) :
 | 
						|
    QDialog(parent),
 | 
						|
    ui(new Ui::NewMaterialDialog)
 | 
						|
{
 | 
						|
    ui->setupUi(this);
 | 
						|
}
 | 
						|
 | 
						|
NewMaterialDialog::~NewMaterialDialog()
 | 
						|
{
 | 
						|
    delete ui;
 | 
						|
}
 |