diff options
author | Spp <none@none> | 2010-04-07 19:12:44 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-07 19:12:44 +0200 |
commit | 182e9a20b107c0d824e8a0bd1cf8f7eceb2b4ce5 (patch) | |
tree | eaad3fb4d60703db8df6a94a197321c7125f58ef /src/game/Chat.cpp | |
parent | b27ce42704c33e292bda390265bb8fd01a433505 (diff) |
Code style (game + scripts only):
"for(" --> "for ("
--HG--
branch : trunk
Diffstat (limited to 'src/game/Chat.cpp')
-rw-r--r-- | src/game/Chat.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/Chat.cpp b/src/game/Chat.cpp index d843643ad83..3b618a5e6d7 100644 --- a/src/game/Chat.cpp +++ b/src/game/Chat.cpp @@ -1314,7 +1314,7 @@ valid examples: int32 propertyId = 0; bool negativeNumber = false; char c; - for(uint8 i=0; i<randomPropertyPosition; ++i) + for (uint8 i=0; i<randomPropertyPosition; ++i) { propertyId = 0; negativeNumber = false; @@ -1629,7 +1629,7 @@ valid examples: ItemLocale const *il = objmgr.GetItemLocale(linkedItem->ItemId); bool foundName = false; - for(uint8 i=LOCALE_koKR; i<MAX_LOCALE; ++i) + for (uint8 i=LOCALE_koKR; i<MAX_LOCALE; ++i) { int8 dbIndex = objmgr.GetIndexForLocale(LocaleConstant(i)); if (dbIndex == -1 || il == NULL || dbIndex >= il->Name.size()) |