GH-994 hopefully fix issue with people still using jar mods

Added an 'add mods' button to the version page
Add jar mods now has a very angry nag dialog until it's used successfully
Buttons on version page are rearranged to deemphasize jar mods
This commit is contained in:
Petr Mrázek
2015-05-29 02:22:02 +02:00
parent a98e1df10c
commit b7f8241968
9 changed files with 91 additions and 8 deletions

View File

@ -19,6 +19,8 @@
#include <QIcon>
#include <memory>
#include "BasePageContainer.h"
class BasePage
{
public:
@ -31,6 +33,9 @@ public:
virtual QString helpPage() const { return QString(); }
virtual void opened() {}
virtual void closed() {}
virtual void setParentContainer(BasePageContainer *) {};
public:
int stackIndex = -1;
int listIndex = -1;
};