mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 08:56:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			No EOL
		
	
	
		
			480 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			No EOL
		
	
	
		
			480 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "subview.hpp"
 | 
						|
 | 
						|
CSVDoc::SubView::SubView (const CSMWorld::UniversalId& id) : mUniversalId (id)
 | 
						|
{
 | 
						|
    /// \todo  add a button to the title bar that clones this sub view
 | 
						|
 | 
						|
    setWindowTitle (mUniversalId.toString().c_str());
 | 
						|
}
 | 
						|
 | 
						|
CSMWorld::UniversalId CSVDoc::SubView::getUniversalId() const
 | 
						|
{
 | 
						|
    return mUniversalId;
 | 
						|
}
 | 
						|
 | 
						|
void CSVDoc::SubView::updateEditorSetting (const QString &settingName, const QString &settingValue)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
void CSVDoc::SubView::setStatusBar (bool show) {} |