Sat, 06 Jun 2015 23:02:51 +0300
Split the project into two executables (the launcher and the configurator)
#include <QDialog> // // ------------------------------------------------------------------------------------------------- // class AddVersionPrompt : public QDialog { Q_OBJECT public: AddVersionPrompt (struct VersionGuiEntry* entry, QWidget* parent = NULL, Qt::WindowFlags f = 0); virtual ~AddVersionPrompt(); VersionGuiEntry* getVersionInfo(); private slots: void acceptPressed(); void findExePath(); private: class Ui_AddVersion& ui; struct VersionGuiEntry* m_entry; };