NOISSUE language selection wizard improvements

Same needs to be applied to the application settings later.
This commit is contained in:
Petr Mrázek
2019-01-08 02:20:36 +01:00
parent 819503d530
commit e71786d7b9
4 changed files with 102 additions and 9 deletions

View File

@ -3,7 +3,8 @@
#include "BaseWizardPage.h"
class QVBoxLayout;
class QListView;
class QTreeView;
class QLabel;
class LanguageWizardPage : public BaseWizardPage
{
@ -27,5 +28,6 @@ protected slots:
private:
QVBoxLayout *verticalLayout = nullptr;
QListView *languageView = nullptr;
QTreeView *languageView = nullptr;
QLabel *helpUsLabel = nullptr;
};