diff options
author | Taeyeon Mori <orochimarufan.x3@gmail.com> | 2014-04-12 20:35:37 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2014-06-30 23:53:42 +0200 |
commit | d16634009788e4baed523f289a85f4808d9ea6c8 (patch) | |
tree | b46c18cc8e2c27809e6047e877ce95cd631729be | |
parent | eb5699c835c2c0f2ebb1561b1ae3f37a457b941f (diff) | |
download | MultiMC-d16634009788e4baed523f289a85f4808d9ea6c8.tar MultiMC-d16634009788e4baed523f289a85f4808d9ea6c8.tar.gz MultiMC-d16634009788e4baed523f289a85f4808d9ea6c8.tar.lz MultiMC-d16634009788e4baed523f289a85f4808d9ea6c8.tar.xz MultiMC-d16634009788e4baed523f289a85f4808d9ea6c8.zip |
[Clang Warnings] Add empty default clause
-rw-r--r-- | gui/groupview/InstanceDelegate.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gui/groupview/InstanceDelegate.cpp b/gui/groupview/InstanceDelegate.cpp index 64dc31d2..3bd77747 100644 --- a/gui/groupview/InstanceDelegate.cpp +++ b/gui/groupview/InstanceDelegate.cpp @@ -120,6 +120,8 @@ void drawBadges(QPainter *painter, const QStyleOptionViewItemV4 &option, BaseIns case BaseInstance::VersionBrokenFlag: pixmaps.append("broken"); break; + default: + break; } } |