1
0
Fork 0

Fix SIGSEGV with Qt launcher on Linux.

- patch from Dirk Dittmann
This commit is contained in:
James Turner 2015-08-02 18:32:39 -05:00
parent 1546778109
commit 67352a1a52
2 changed files with 2 additions and 2 deletions

View file

@ -535,7 +535,7 @@ QtLauncher::~QtLauncher()
}
void QtLauncher::initApp(int argc, char** argv)
void QtLauncher::initApp(int& argc, char** argv)
{
static bool qtInitDone = false;
if (!qtInitDone) {

View file

@ -48,7 +48,7 @@ public:
QtLauncher();
virtual ~QtLauncher();
static void initApp(int argc, char** argv);
static void initApp(int& argc, char** argv);
static bool runLauncherDialog();