src: Fixes for Release

* pass log directory absolute to indexers
* pass app and user paths absolute to indexers
* removed QCoreApplication instance from indexer process
* removed mutex from ConsoleLogger
* updated shortcut window
* renamed code reference menu items
This commit is contained in:
Eberhard Graether
2018-07-24 12:53:55 +02:00
parent f715e5c99e
commit d96baad91d
9 changed files with 23 additions and 24 deletions
-5
View File
@@ -1,7 +1,5 @@
#include "includes.h"
#include <QCoreApplication>
#include "LanguagePackageCxx.h"
#include "LanguagePackageJava.h"
#include "LanguagePackageManager.h"
@@ -37,8 +35,6 @@ void suppressCrashMessage()
int main(int argc, char *argv[])
{
QCoreApplication qtApp(argc, argv);
int processId = -1;
std::string instanceUuid;
std::string appPath;
@@ -93,6 +89,5 @@ int main(int argc, char *argv[])
InterprocessIndexer indexer(instanceUuid, processId);
indexer.work();
// qtApp.quit();
return 0;
}