typos, yay!

This commit is contained in:
DarthArgus
2016-12-26 14:57:02 -06:00
parent 9a2fa152f1
commit 4396ba1e33
2 changed files with 3 additions and 3 deletions
@@ -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);
@@ -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);