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
+4 -4
View File
@@ -834,13 +834,13 @@ void QtMainWindow::setupEditMenu()
menu->addSeparator();
menu->addAction(tr("Code Reference Next"), this, &QtMainWindow::codeReferenceNext, QKeySequence(Qt::CTRL + Qt::Key_G));
menu->addAction(tr("Code Reference Previous"), this,
menu->addAction(tr("Next Reference"), this, &QtMainWindow::codeReferenceNext, QKeySequence(Qt::CTRL + Qt::Key_G));
menu->addAction(tr("Previous Reference"), this,
&QtMainWindow::codeReferencePrevious, QKeySequence(Qt::SHIFT + Qt::CTRL + Qt::Key_G));
menu->addAction(tr("Code Local Reference Next"), this,
menu->addAction(tr("Next Local Reference"), this,
&QtMainWindow::codeLocalReferenceNext, QKeySequence(Qt::CTRL + Qt::Key_T));
menu->addAction(tr("Code Local Reference Previous"), this,
menu->addAction(tr("Previous Local Reference"), this,
&QtMainWindow::codeLocalReferencePrevious, QKeySequence(Qt::SHIFT + Qt::CTRL + Qt::Key_T));
menu->addSeparator();