mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 15:13:30 +02:00
Rebase fixes
This commit is contained in:
parent
ba5c20b7a6
commit
9827c90851
4 changed files with 6 additions and 5 deletions
interface/src
|
@ -402,7 +402,7 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer) :
|
|||
|
||||
_myAvatar = DependencyManager::get<AvatarManager>()->getMyAvatar();
|
||||
|
||||
qCDebug(interfaceapp) << "[VERSION] Build sequence: " << qPrintable(applicationVersion());
|
||||
qCDebug(interfaceapp) << "[VERSION] Build sequence:" << qPrintable(applicationVersion());
|
||||
|
||||
_bookmarks = new Bookmarks(); // Before setting up the menu
|
||||
|
||||
|
@ -781,7 +781,6 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer) :
|
|||
|
||||
connect(this, &Application::applicationStateChanged, this, &Application::activeChanged);
|
||||
|
||||
|
||||
qCDebug(interfaceapp, "Startup time: %4.2f seconds.", (double)startupTimer.elapsed() / 1000.0f);
|
||||
}
|
||||
|
||||
|
|
|
@ -59,7 +59,7 @@ protected:
|
|||
_lastRollTime = now;
|
||||
file.open(QIODevice::WriteOnly | QIODevice::Truncate);
|
||||
file.close();
|
||||
qDebug() << "Rolled log file: " << newFileName;
|
||||
qDebug() << "Rolled log file:" << newFileName;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
#include <avatar/AvatarManager.h>
|
||||
#include <Application.h>
|
||||
#include <AudioClient.h>
|
||||
#include <GeometryCache.h>
|
||||
#include <LODManager.h>
|
||||
#include <OffscreenUi.h>
|
||||
|
|
|
@ -10,10 +10,11 @@
|
|||
|
||||
#include "Overlays.h"
|
||||
|
||||
#include <QtScript/QScriptValueIterator>
|
||||
|
||||
#include <limits>
|
||||
|
||||
#include <QtScript/QScriptValueIterator>
|
||||
|
||||
#include <OffscreenUi.h>
|
||||
#include <render/Scene.h>
|
||||
#include <RegisteredMetaTypes.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue