[8067] Fixed tabs and trailing whitespaces in code.

This commit is contained in:
VladimirMangos 2009-06-22 15:42:55 +04:00
parent c402d3ec26
commit 634fda8475
5 changed files with 8 additions and 8 deletions

View file

@ -51,8 +51,8 @@ enum AchievementCriteriaDataType
ACHIEVEMENT_CRITERIA_DATA_TYPE_S_AREA = 6, // area id 0 ACHIEVEMENT_CRITERIA_DATA_TYPE_S_AREA = 6, // area id 0
ACHIEVEMENT_CRITERIA_DATA_TYPE_T_AURA = 7, // spell_id effect_idx ACHIEVEMENT_CRITERIA_DATA_TYPE_T_AURA = 7, // spell_id effect_idx
ACHIEVEMENT_CRITERIA_DATA_TYPE_VALUE = 8, // minvalue value provided with achievement update must be not less that limit ACHIEVEMENT_CRITERIA_DATA_TYPE_VALUE = 8, // minvalue value provided with achievement update must be not less that limit
ACHIEVEMENT_CRITERIA_DATA_TYPE_T_LEVEL = 9, // minlevel minlevel of target ACHIEVEMENT_CRITERIA_DATA_TYPE_T_LEVEL = 9, // minlevel minlevel of target
ACHIEVEMENT_CRITERIA_DATA_TYPE_T_GENDER = 10,// gender 0=male; 1=female ACHIEVEMENT_CRITERIA_DATA_TYPE_T_GENDER = 10,// gender 0=male; 1=female
ACHIEVEMENT_CRITERIA_DATA_TYPE_DISABLED = 11,// used to prevent achievement creteria complete if not all requirement implemented and listed in table ACHIEVEMENT_CRITERIA_DATA_TYPE_DISABLED = 11,// used to prevent achievement creteria complete if not all requirement implemented and listed in table
ACHIEVEMENT_CRITERIA_DATA_TYPE_MAP_DIFFICULTY = 12,// difficulty normal/heroic difficulty for current event map ACHIEVEMENT_CRITERIA_DATA_TYPE_MAP_DIFFICULTY = 12,// difficulty normal/heroic difficulty for current event map
ACHIEVEMENT_CRITERIA_DATA_TYPE_MAP_PLAYER_COUNT = 13,// count "with less than %u people in the zone" ACHIEVEMENT_CRITERIA_DATA_TYPE_MAP_PLAYER_COUNT = 13,// count "with less than %u people in the zone"

View file

@ -180,7 +180,7 @@ public:
{ {
while (!World::IsStopped()) while (!World::IsStopped())
{ {
ACE_Based::Thread::Sleep(static_cast<unsigned long> (socketSelecttime / 1000)); ACE_Based::Thread::Sleep(static_cast<unsigned long> (socketSelecttime / 1000));
checkping (); checkping ();
} }
} }

View file

@ -944,7 +944,7 @@ bool AuthSocket::_HandleXferAccept()
ibuf.Remove(1); // clear input buffer ibuf.Remove(1); // clear input buffer
fseek(pPatch,0,0); fseek(pPatch,0,0);
ACE_Based::Thread u(*new PatcherRunnable(this)); ACE_Based::Thread u(*new PatcherRunnable(this));
return true; return true;
} }

View file

@ -58,7 +58,7 @@ namespace ACE_Based
ACE_Guard<LockType> g(_lock); ACE_Guard<LockType> g(_lock);
ASSERT(!_canceled); ASSERT(!_canceled);
// throw Cancellation_Exception(); // throw Cancellation_Exception();
_queue.push_back(item); _queue.push_back(item);
@ -73,7 +73,7 @@ namespace ACE_Based
ACE_Guard<LockType> g(_lock); ACE_Guard<LockType> g(_lock);
ASSERT (!_queue.empty() || !_canceled); ASSERT (!_queue.empty() || !_canceled);
// throw Cancellation_Exception(); // throw Cancellation_Exception();
T item = _queue.front(); T item = _queue.front();
_queue.pop_front(); _queue.pop_front();
@ -87,7 +87,7 @@ namespace ACE_Based
ACE_Guard<LockType> g(_lock); ACE_Guard<LockType> g(_lock);
ASSERT (!_queue.empty()); ASSERT (!_queue.empty());
// throw NoSuchElement_Exception(); // throw NoSuchElement_Exception();
return _queue.front(); return _queue.front();
} }

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "8066" #define REVISION_NR "8067"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__