mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 00:26:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			511 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			511 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "runlogsubview.hpp"
 | 
						|
 | 
						|
#include "../../model/doc/document.hpp"
 | 
						|
 | 
						|
#include <apps/opencs/view/doc/subview.hpp>
 | 
						|
 | 
						|
#include <QTextEdit>
 | 
						|
 | 
						|
CSVDoc::RunLogSubView::RunLogSubView(const CSMWorld::UniversalId& id, CSMDoc::Document& document)
 | 
						|
    : SubView(id)
 | 
						|
{
 | 
						|
    QTextEdit* edit = new QTextEdit(this);
 | 
						|
    edit->setDocument(document.getRunLog());
 | 
						|
    edit->setReadOnly(true);
 | 
						|
 | 
						|
    setWidget(edit);
 | 
						|
}
 | 
						|
 | 
						|
void CSVDoc::RunLogSubView::setEditLock(bool locked)
 | 
						|
{
 | 
						|
    // ignored since this SubView does not have editing
 | 
						|
}
 |