Skip to content
Snippets Groups Projects
Commit 875ff58d authored by rswindell's avatar rswindell
Browse files

Fix the msg_area_prop_desc definition.

parent 27103128
Branches
Tags
No related merge requests found
......@@ -41,6 +41,11 @@
#ifdef BUILD_JSDOCS
static char* msg_area_prop_desc[] = {
"message area settings (bitfield) - see <tt>MM_*</tt> in <tt>sbbsdefs.js</tt> for details"
,NULL
};
static char* msg_grp_prop_desc[] = {
"index into grp_list array (or -1 if not in array) <i>(introduced in v3.12)</i>"
,"unique number for this message group"
......@@ -50,7 +55,7 @@ static char* msg_grp_prop_desc[] = {
,NULL
};
static char* msg_area_prop_desc[] = {
static char* msg_sub_prop_desc[] = {
"index into sub_list array (or -1 if not in array) <i>(introduced in v3.12)</i>"
,"group's index into grp_list array <i>(introduced in v3.12)</i>"
......@@ -227,7 +232,7 @@ BOOL DLLCALL js_CreateMsgAreaProperties(JSContext* cx, scfg_t* cfg, JSObject* su
return(FALSE);
#ifdef BUILD_JSDOCS
js_CreateArrayOfStrings(cx, subobj, "_property_desc_list", msg_area_prop_desc, JSPROP_READONLY);
js_CreateArrayOfStrings(cx, subobj, "_property_desc_list", msg_sub_prop_desc, JSPROP_READONLY);
#endif
return(TRUE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment