Fixed loads of /W4 warnings, because it's easier than doing anything useful. Added some asserts to check potentially dangerous assumptions, implemented a few missing bits of code, adjusted some comments, etc.

This was SVN commit r815.
This commit is contained in:
Ykkrosh 2004-07-24 14:11:12 +00:00
parent fe1bee706b
commit 233513ce3c

View File

@ -1,4 +1,4 @@
// $Id: JSInterface_IGUIObject.cpp,v 1.7 2004/07/24 14:03:16 philip Exp $
// $Id: JSInterface_IGUIObject.cpp,v 1.8 2004/07/24 14:11:12 philip Exp $
#include "precompiled.h"
@ -169,6 +169,8 @@ JSBool JSI_IGUIObject::getProperty(JSContext* cx, JSObject* obj, jsval id, jsval
assert(! "This shouldn't happen");
return JS_FALSE;
}
return JS_TRUE;
}
}