[Clang Warnings] Remove unused variables
This commit is contained in:
		 Taeyeon Mori
					Taeyeon Mori
				
			
				
					committed by
					
						 Petr Mrázek
						Petr Mrázek
					
				
			
			
				
	
			
			
			 Petr Mrázek
						Petr Mrázek
					
				
			
						parent
						
							1f498266d8
						
					
				
				
					commit
					b9fb718822
				
			| @@ -283,7 +283,6 @@ void GroupView::mousePressEvent(QMouseEvent *event) | |||||||
|  |  | ||||||
| 	m_pressedIndex = index; | 	m_pressedIndex = index; | ||||||
| 	m_pressedAlreadySelected = selectionModel()->isSelected(m_pressedIndex); | 	m_pressedAlreadySelected = selectionModel()->isSelected(m_pressedIndex); | ||||||
| 	QItemSelectionModel::SelectionFlags selection_flags = selectionCommand(index, event); |  | ||||||
| 	m_pressedPosition = geometryPos; | 	m_pressedPosition = geometryPos; | ||||||
|  |  | ||||||
| 	m_pressedCategory = categoryAt(geometryPos); | 	m_pressedCategory = categoryAt(geometryPos); | ||||||
|   | |||||||
| @@ -85,12 +85,9 @@ void VersionListView::paintEvent(QPaintEvent *event) | |||||||
|  |  | ||||||
| void VersionListView::paintInfoLabel(QPaintEvent *event) | void VersionListView::paintInfoLabel(QPaintEvent *event) | ||||||
| { | { | ||||||
| 	int scrollInterval = 500; |  | ||||||
|  |  | ||||||
|     //calculate the rect for the overlay |     //calculate the rect for the overlay | ||||||
|     QPainter painter(viewport()); |     QPainter painter(viewport()); | ||||||
|     painter.setRenderHint(QPainter::Antialiasing, true); |     painter.setRenderHint(QPainter::Antialiasing, true); | ||||||
|     const QChar letter = 'Q'; |  | ||||||
| 	QFont font("sans", 20); | 	QFont font("sans", 20); | ||||||
|     font.setBold(true); |     font.setBold(true); | ||||||
| 	 | 	 | ||||||
| @@ -147,4 +144,4 @@ void ModListView::setModel ( QAbstractItemModel* model ) | |||||||
| 			head->setSectionResizeMode(i, QHeaderView::ResizeToContents); | 			head->setSectionResizeMode(i, QHeaderView::ResizeToContents); | ||||||
| 	} | 	} | ||||||
| } | } | ||||||
| */ | */ | ||||||
|   | |||||||
| @@ -452,7 +452,6 @@ void MinecraftProcess::arm() | |||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	m_instance->setLastLaunch(); | 	m_instance->setLastLaunch(); | ||||||
| 	auto &settings = m_instance->settings(); |  | ||||||
|  |  | ||||||
| 	QStringList args = javaArguments(); | 	QStringList args = javaArguments(); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -411,7 +411,7 @@ QVariant ModList::data(const QModelIndex &index, int role) const | |||||||
| 	switch (role) | 	switch (role) | ||||||
| 	{ | 	{ | ||||||
| 	case Qt::DisplayRole: | 	case Qt::DisplayRole: | ||||||
| 		switch (index.column()) | 		switch (column) | ||||||
| 		{ | 		{ | ||||||
| 		case NameColumn: | 		case NameColumn: | ||||||
| 			return mods[row].name(); | 			return mods[row].name(); | ||||||
| @@ -426,7 +426,7 @@ QVariant ModList::data(const QModelIndex &index, int role) const | |||||||
| 		return mods[row].mmc_id(); | 		return mods[row].mmc_id(); | ||||||
|  |  | ||||||
| 	case Qt::CheckStateRole: | 	case Qt::CheckStateRole: | ||||||
| 		switch (index.column()) | 		switch (column) | ||||||
| 		{ | 		{ | ||||||
| 		case ActiveColumn: | 		case ActiveColumn: | ||||||
| 			return mods[row].enabled() ? Qt::Checked : Qt::Unchecked; | 			return mods[row].enabled() ? Qt::Checked : Qt::Unchecked; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user