From 4396ba1e33697f8a8ee2a8d1a4f9376ce0fe5d9c Mon Sep 17 00:00:00 2001 From: DarthArgus Date: Mon, 26 Dec 2016 14:57:02 -0600 Subject: [PATCH] typos, yay! --- .../application/LoginServer/src/shared/TaskMapAccount.cpp | 4 ++-- .../application/LoginServer/src/shared/TaskMapAccount.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/server/application/LoginServer/src/shared/TaskMapAccount.cpp b/engine/server/application/LoginServer/src/shared/TaskMapAccount.cpp index 1a8b9705..368d8131 100644 --- a/engine/server/application/LoginServer/src/shared/TaskMapAccount.cpp +++ b/engine/server/application/LoginServer/src/shared/TaskMapAccount.cpp @@ -26,8 +26,8 @@ TaskMapAccount::TaskMapAccount(StationId parentID, StationId childID) : bool TaskMapAccount::process(DB::Session *session) { MapAccountQuery qry; - qry.parentID=m_parentId; - qry.childID=m_childId; + qry.parentID=m_parentID; + qry.childID=m_childID; bool rval = session->exec(&qry); diff --git a/engine/server/application/LoginServer/src/shared/TaskMapAccount.h b/engine/server/application/LoginServer/src/shared/TaskMapAccount.h index 73e7227b..ad7f04e1 100644 --- a/engine/server/application/LoginServer/src/shared/TaskMapAccount.h +++ b/engine/server/application/LoginServer/src/shared/TaskMapAccount.h @@ -34,7 +34,7 @@ class TaskMapAccount : public DB::TaskRequest public: MapAccountQuery(); - DB::BindableNetworkId parentID; //lint !e1925 // public data member + DB::BindableLong parentID; //lint !e1925 // public data member DB::BindableLong childID; //lint !e1925 // public data member virtual void getSQL(std::string &sql);