summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaeyeon Mori <orochimarufan.x3@gmail.com>2014-04-12 20:14:09 +0200
committerPetr Mrázek <peterix@gmail.com>2014-06-30 23:53:41 +0200
commitb9fb7188226f2812a6ee3f28cd4968883d3b9e8a (patch)
treedfc57f385905ce5e423cc454f54ee1a6bb9290ad
parent1f498266d8748c731a7cdcc1a0adebe4dc7a9703 (diff)
downloadMultiMC-b9fb7188226f2812a6ee3f28cd4968883d3b9e8a.tar
MultiMC-b9fb7188226f2812a6ee3f28cd4968883d3b9e8a.tar.gz
MultiMC-b9fb7188226f2812a6ee3f28cd4968883d3b9e8a.tar.lz
MultiMC-b9fb7188226f2812a6ee3f28cd4968883d3b9e8a.tar.xz
MultiMC-b9fb7188226f2812a6ee3f28cd4968883d3b9e8a.zip
[Clang Warnings] Remove unused variables
-rw-r--r--gui/groupview/GroupView.cpp1
-rw-r--r--gui/widgets/VersionListView.cpp5
-rw-r--r--logic/MinecraftProcess.cpp1
-rw-r--r--logic/ModList.cpp4
4 files changed, 3 insertions, 8 deletions
diff --git a/gui/groupview/GroupView.cpp b/gui/groupview/GroupView.cpp
index b650efee..7094b34c 100644
--- a/gui/groupview/GroupView.cpp
+++ b/gui/groupview/GroupView.cpp
@@ -283,7 +283,6 @@ void GroupView::mousePressEvent(QMouseEvent *event)
m_pressedIndex = index;
m_pressedAlreadySelected = selectionModel()->isSelected(m_pressedIndex);
- QItemSelectionModel::SelectionFlags selection_flags = selectionCommand(index, event);
m_pressedPosition = geometryPos;
m_pressedCategory = categoryAt(geometryPos);
diff --git a/gui/widgets/VersionListView.cpp b/gui/widgets/VersionListView.cpp
index b7f45f27..e552d738 100644
--- a/gui/widgets/VersionListView.cpp
+++ b/gui/widgets/VersionListView.cpp
@@ -85,12 +85,9 @@ void VersionListView::paintEvent(QPaintEvent *event)
void VersionListView::paintInfoLabel(QPaintEvent *event)
{
- int scrollInterval = 500;
-
//calculate the rect for the overlay
QPainter painter(viewport());
painter.setRenderHint(QPainter::Antialiasing, true);
- const QChar letter = 'Q';
QFont font("sans", 20);
font.setBold(true);
@@ -147,4 +144,4 @@ void ModListView::setModel ( QAbstractItemModel* model )
head->setSectionResizeMode(i, QHeaderView::ResizeToContents);
}
}
-*/ \ No newline at end of file
+*/
diff --git a/logic/MinecraftProcess.cpp b/logic/MinecraftProcess.cpp
index a3ffedba..dfa1dee7 100644
--- a/logic/MinecraftProcess.cpp
+++ b/logic/MinecraftProcess.cpp
@@ -452,7 +452,6 @@ void MinecraftProcess::arm()
}
m_instance->setLastLaunch();
- auto &settings = m_instance->settings();
QStringList args = javaArguments();
diff --git a/logic/ModList.cpp b/logic/ModList.cpp
index f7770920..3382a6ef 100644
--- a/logic/ModList.cpp
+++ b/logic/ModList.cpp
@@ -411,7 +411,7 @@ QVariant ModList::data(const QModelIndex &index, int role) const
switch (role)
{
case Qt::DisplayRole:
- switch (index.column())
+ switch (column)
{
case NameColumn:
return mods[row].name();
@@ -426,7 +426,7 @@ QVariant ModList::data(const QModelIndex &index, int role) const
return mods[row].mmc_id();
case Qt::CheckStateRole:
- switch (index.column())
+ switch (column)
{
case ActiveColumn:
return mods[row].enabled() ? Qt::Checked : Qt::Unchecked;