[Spiderape-cvs] SF.net SVN: spiderape: [41] trunk/src/ape/ape.cpp
Status: Beta
Brought to you by:
sgbeal
|
From: <sg...@us...> - 2007-09-28 02:50:46
|
Revision: 41
http://spiderape.svn.sourceforge.net/spiderape/?rev=41&view=rev
Author: sgbeal
Date: 2007-09-27 19:50:44 -0700 (Thu, 27 Sep 2007)
Log Message:
-----------
corrected missing return
Modified Paths:
--------------
trunk/src/ape/ape.cpp
Modified: trunk/src/ape/ape.cpp
===================================================================
--- trunk/src/ape/ape.cpp 2007-09-28 00:59:17 UTC (rev 40)
+++ trunk/src/ape/ape.cpp 2007-09-28 02:50:44 UTC (rev 41)
@@ -710,8 +710,8 @@
bool js_simple_object::set( std::string const & key, jsval val )
{
- JS_SetProperty( this->js_context(), this->js_object(),
- key.c_str(), &val );
+ return JS_SetProperty( this->js_context(), this->js_object(),
+ key.c_str(), &val );
}
js_simple_object::js_simple_object( JSContext * cx )
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|