[9384] Resore use uint64 instead time_t in query, some other fixes.

This commit is contained in:
VladimirMangos 2010-02-14 21:10:29 +03:00
parent 5beb853bc4
commit f4c38044c4
6 changed files with 10 additions and 10 deletions

View file

@ -2241,7 +2241,7 @@ void SpellMgr::LoadSpellScriptTarget()
return;
}
barGoLink bar(result->GetRowCount());
barGoLink bar((int)result->GetRowCount());
do
{
@ -2379,7 +2379,7 @@ void SpellMgr::LoadSpellPetAuras()
return;
}
barGoLink bar( result->GetRowCount() );
barGoLink bar( (int)result->GetRowCount() );
do
{
@ -2717,7 +2717,7 @@ void SpellMgr::LoadSpellAreas()
return;
}
barGoLink bar( result->GetRowCount() );
barGoLink bar( (int)result->GetRowCount() );
do
{
@ -3042,7 +3042,7 @@ void SpellMgr::LoadSkillLineAbilityMap()
{
mSkillLineAbilityMap.clear();
barGoLink bar( sSkillLineAbilityStore.GetNumRows() );
barGoLink bar( (int)sSkillLineAbilityStore.GetNumRows() );
uint32 count = 0;
for (uint32 i = 0; i < sSkillLineAbilityStore.GetNumRows(); ++i)
@ -3079,7 +3079,7 @@ void SpellMgr::CheckUsedSpells(char const* table)
return;
}
barGoLink bar( result->GetRowCount() );
barGoLink bar( (int)result->GetRowCount() );
do
{