From 931365d1bd9ab5c11116af4de63fea946c7d2cb3 Mon Sep 17 00:00:00 2001 From: Salanto <62221668+Salanto@users.noreply.github.com> Date: Thu, 12 Aug 2021 22:03:42 +0200 Subject: [PATCH] Resolve compile error --- core/include/config_manager.h | 10 +++++----- core/src/config_manager.cpp | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/core/include/config_manager.h b/core/include/config_manager.h index 7f73c47..9af71b3 100644 --- a/core/include/config_manager.h +++ b/core/include/config_manager.h @@ -424,17 +424,17 @@ private: */ static QSettings* m_discord; + /** + * @brief Pointer to QElapsedTimer to track the uptime of the server. + */ + static QElapsedTimer* m_uptimeTimer; + /** * @brief Returns a stringlist with the contents of a .txt file from config/text/. * * @param Name of the file to load. */ static QStringList loadConfigFile(const QString filename); - - /** - * @brief Pointer to QElapsedTimer to track the uptime of the server. - */ - static QElapsedTimer* uptimeTimer; }; diff --git a/core/src/config_manager.cpp b/core/src/config_manager.cpp index 085799b..49e1401 100644 --- a/core/src/config_manager.cpp +++ b/core/src/config_manager.cpp @@ -20,6 +20,7 @@ QSettings* ConfigManager::m_settings = new QSettings("config/config.ini", QSettings::IniFormat); QSettings* ConfigManager::m_discord = new QSettings("config/discord.ini", QSettings::IniFormat); ConfigManager::CommandSettings* ConfigManager::m_commands = new CommandSettings(); +QElapsedTimer* ConfigManager::m_uptimeTimer = new QElapsedTimer; bool ConfigManager::verifyServerConfig() { @@ -85,8 +86,7 @@ bool ConfigManager::verifyServerConfig() m_commands->reprimands = (loadConfigFile("reprimands")); m_commands->gimps = (loadConfigFile("gimp")); - uptimeTimer = new QElapsedTimer; - uptimeTimer->start(); + m_uptimeTimer->start(); return true; } @@ -426,7 +426,7 @@ QUrl ConfigManager::advertiserHTTPIP() qint64 ConfigManager::uptime() { - return uptimeTimer->elapsed(); + return m_uptimeTimer->elapsed(); } void ConfigManager::setMotd(const QString f_motd)