mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	C++ permits use of parameters without name, which signals unused Signed-off-by: Jan Iversen <jani@apache.org>
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			686 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			686 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #include "cleanertablemodel.h"
 | |
| #include "core/metrics.h"
 | |
| 
 | |
| CleanerTableModel::CleanerTableModel(QObject *parent) : QAbstractTableModel(parent)
 | |
| {
 | |
| }
 | |
| 
 | |
| int CleanerTableModel::columnCount(const QModelIndex&) const
 | |
| {
 | |
| 	return headers.count();
 | |
| }
 | |
| 
 | |
| QVariant CleanerTableModel::headerData(int section, Qt::Orientation orientation, int role) const
 | |
| {
 | |
| 	QVariant ret;
 | |
| 
 | |
| 	if (orientation == Qt::Vertical)
 | |
| 		return ret;
 | |
| 
 | |
| 	switch (role) {
 | |
| 	case Qt::FontRole:
 | |
| 		ret = defaultModelFont();
 | |
| 		break;
 | |
| 	case Qt::DisplayRole:
 | |
| 		ret = headers.at(section);
 | |
| 	}
 | |
| 	return ret;
 | |
| }
 | |
| 
 | |
| void CleanerTableModel::setHeaderDataStrings(const QStringList &newHeaders)
 | |
| {
 | |
| 	headers = newHeaders;
 | |
| }
 |