Core: Fix couple of warnings

--HG--
branch : trunk
This commit is contained in:
Spp
2010-10-01 09:10:07 +02:00
parent 395df76860
commit 952d3cf10e
2 changed files with 5 additions and 5 deletions

View File

@@ -33,17 +33,17 @@
#include "Timer.h"
MySQLConnection::MySQLConnection(MySQLConnectionInfo& connInfo) :
m_connectionInfo(connInfo),
m_queue(NULL),
m_worker(NULL),
m_Mysql(NULL)
m_Mysql(NULL),
m_connectionInfo(connInfo)
{
}
MySQLConnection::MySQLConnection(ACE_Activation_Queue* queue, MySQLConnectionInfo& connInfo) :
m_connectionInfo(connInfo),
m_queue(queue),
m_Mysql(NULL)
m_Mysql(NULL),
m_connectionInfo(connInfo)
{
m_worker = new DatabaseWorker(m_queue, this);
}