Core/DBLayer: Remove obsolete parameter in PreparedResultSet constructor.

Thanks to Spp for pointing out.

--HG--
branch : trunk
This commit is contained in:
Machiavelli
2010-09-28 14:03:35 +02:00
parent de96ba38bc
commit 7abe69b570
4 changed files with 7 additions and 8 deletions

View File

@@ -31,7 +31,7 @@ m_fieldCount(fieldCount)
ASSERT(m_currentRow);
}
PreparedResultSet::PreparedResultSet(MYSQL_STMT* stmt, MYSQL_RES *result, MYSQL_FIELD *fields, uint64 rowCount, uint32 fieldCount) :
PreparedResultSet::PreparedResultSet(MYSQL_STMT* stmt, MYSQL_RES *result, uint64 rowCount, uint32 fieldCount) :
m_rBind(NULL),
m_stmt(stmt),
m_res(result),