WINTERMUTE: Rename VarName->varName in BScriptable

This commit is contained in:
Einar Johan Trøan Sømåen 2012-07-08 20:31:06 +02:00
parent f1319eb4fc
commit 38f8ad562a

View File

@ -150,9 +150,9 @@ HRESULT CBScriptable::persist(CBPersistMgr *persistMgr) {
//////////////////////////////////////////////////////////////////////////
int CBScriptable::scCompare(CBScriptable *Val) {
if (this < Val) return -1;
else if (this > Val) return 1;
int CBScriptable::scCompare(CBScriptable *val) {
if (this < val) return -1;
else if (this > val) return 1;
else return 0;
}