clean RAM after use profile, button focus fixed

This commit is contained in:
Rafael 2016-03-27 13:19:50 +02:00
parent 6e165de9e2
commit fc37a5963c
7 changed files with 72 additions and 10 deletions

View file

@ -19,6 +19,7 @@
#ifndef USERINTERFACE_H
#define USERINTERFACE_H
#include "ProfileInterface.h"
#include "ProfileDatabase.h"
#include "CrewDatabase.h"
#include <QMainWindow>
@ -38,14 +39,17 @@ public:
private slots:
void on_actionExit_triggered();
void closeProfile();
private:
ProfileDatabase *profileDB;
CrewDatabase *crewDB;
Ui::UserInterface *ui;
ProfileInterface *profileUI;
bool profileOpen;
QString GTAV_Folder;
QString GTAV_ProfilesFolder;
QMap<QString, QString> GTAV_ProfileMap;
void openProfile(QString profileName);
};
#endif // USERINTERFACE_H