From ef3103a87ff60b7aeab4296b0197c80021c5d15d Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Mon, 21 Jun 2021 22:14:37 -0500 Subject: [PATCH] Replace all std::pair with QPair --- core/include/area_data.h | 2 +- core/include/db_manager.h | 4 ++-- core/src/area_data.cpp | 2 +- core/src/db_manager.cpp | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/include/area_data.h b/core/include/area_data.h index ca436e5..94bac98 100644 --- a/core/include/area_data.h +++ b/core/include/area_data.h @@ -696,7 +696,7 @@ class AreaData : public QObject { * * First, a `QStringList` that is the packet of the statement that was advanced to. * * Then, a `TestimonyProgress` value that describes how the advancement happened. */ - std::pair jumpToStatement(int f_position); + QPair jumpToStatement(int f_position); /** * @brief Returns a copy of the judgelog in the area. diff --git a/core/include/db_manager.h b/core/include/db_manager.h index 1bc71e7..fcc5f4a 100644 --- a/core/include/db_manager.h +++ b/core/include/db_manager.h @@ -64,7 +64,7 @@ public: * * First, a `bool` that is true if the query could return at least one such record. * * Then, a `QString` that is the reason for the ban. */ - std::pair isIPBanned(QString ipid); + QPair isIPBanned(QString ipid); /** * @brief Checks if there is a record in the Bans table with the given hardware ID. @@ -75,7 +75,7 @@ public: * * First, a `bool` that is true if the query could return at least one such record. * * Then, a `QString` that is the reason for the ban. */ - std::pair isHDIDBanned(QString hdid); + QPair isHDIDBanned(QString hdid); /** * @brief Gets the ID number of a given ban. diff --git a/core/src/area_data.cpp b/core/src/area_data.cpp index 38daf76..fdd7b16 100644 --- a/core/src/area_data.cpp +++ b/core/src/area_data.cpp @@ -403,7 +403,7 @@ void AreaData::removeStatement(int f_position) --m_statement; } -std::pair AreaData::jumpToStatement(int f_position) +QPair AreaData::jumpToStatement(int f_position) { m_statement = f_position; diff --git a/core/src/db_manager.cpp b/core/src/db_manager.cpp index 0ce30aa..240f20c 100644 --- a/core/src/db_manager.cpp +++ b/core/src/db_manager.cpp @@ -31,7 +31,7 @@ DBManager::DBManager() : updateDB(db_version); } -std::pair DBManager::isIPBanned(QString ipid) +QPair DBManager::isIPBanned(QString ipid) { QSqlQuery query; query.prepare("SELECT * FROM BANS WHERE IPID = ? ORDER BY TIME DESC"); @@ -51,7 +51,7 @@ std::pair DBManager::isIPBanned(QString ipid) else return {false, nullptr}; } -std::pair DBManager::isHDIDBanned(QString hdid) +QPair DBManager::isHDIDBanned(QString hdid) { QSqlQuery query; query.prepare("SELECT * FROM BANS WHERE HDID = ? ORDER BY TIME DESC");