summaryrefslogtreecommitdiffstats
path: root/logic/ModList.cpp
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 /logic/ModList.cpp
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
Diffstat (limited to 'logic/ModList.cpp')
-rw-r--r--logic/ModList.cpp4
1 files changed, 2 insertions, 2 deletions
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;