fix immediate exit when running as bundle on Mac
Allow Qt to process and remove known command-line arguments before attempting to process remaining items. git-svn-id: https://svn.code.sf.net/p/keepassx/code/trunk@14 b624d157-de02-0410-bad0-e51aec6abb33
This commit is contained in:
parent
ac9f0757f9
commit
0a18699926
|
@ -66,9 +66,9 @@ cout << keys[i].ascii() << endl;
|
||||||
}
|
}
|
||||||
QApplication::setStyle(QStyleFactory::create("slimplastic"));
|
QApplication::setStyle(QStyleFactory::create("slimplastic"));
|
||||||
*/
|
*/
|
||||||
|
QApplication* app=new QApplication(argc,argv);
|
||||||
QString ArgFile,ArgCfg,IniFilename;
|
QString ArgFile,ArgCfg,IniFilename;
|
||||||
parseCmdLineArgs(argc,argv,ArgFile,ArgCfg);
|
parseCmdLineArgs(argc,argv,ArgFile,ArgCfg);
|
||||||
QApplication* app=new QApplication(argc,argv);
|
|
||||||
AppDir=app->applicationDirPath();
|
AppDir=app->applicationDirPath();
|
||||||
//Load Config
|
//Load Config
|
||||||
if(ArgCfg==""){
|
if(ArgCfg==""){
|
||||||
|
|
Loading…
Reference in New Issue