logic: Fixed every project trying to load from cdb, added warning for trial mode on failed refresh

This commit is contained in:
Eberhard Graether
2017-02-13 12:40:45 +01:00
parent d5e2bbb17c
commit 2ade5ca976
3 changed files with 16 additions and 7 deletions
+1 -2
View File
@@ -21,7 +21,6 @@
#include "settings/ApplicationSettings.h"
#include "settings/ColorScheme.h"
// useless comment
void Application::createInstance(
const Version& version, ViewFactory* viewFactory, NetworkFactory* networkFactory
){
@@ -177,7 +176,7 @@ void Application::createAndLoadProject(const FilePath& projectSettingsFilePath)
void Application::refreshProject(bool force)
{
if (m_project && !m_isInTrial)
if (m_project)
{
bool indexing = m_project->refresh(force);
if (indexing)