mirror of
https://github.com/overte-org/overte.git
synced 2025-08-13 06:47:11 +02:00
Fix warning
This commit is contained in:
parent
9827c90851
commit
2fc80e58b6
2 changed files with 2 additions and 2 deletions
|
@ -781,7 +781,7 @@ 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);
|
||||
qCDebug(interfaceapp, "Startup time: %4.2f seconds.", (double)startupTimer.elapsed() / 1000.0);
|
||||
}
|
||||
|
||||
void Application::aboutToQuit() {
|
||||
|
|
|
@ -97,7 +97,7 @@ public:
|
|||
static void initPlugins();
|
||||
static void shutdownPlugins();
|
||||
|
||||
Application(int& argc, char** argv, QElapsedTimer &startup_time);
|
||||
Application(int& argc, char** argv, QElapsedTimer& startup_time);
|
||||
~Application();
|
||||
|
||||
void postLambdaEvent(std::function<void()> f);
|
||||
|
|
Loading…
Reference in a new issue