Changeset 15044
- Timestamp:
- 03/13/13 11:01:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/InterpreterV8.cc
r15043 r15044 499 499 arr->Set(String::New("server"), String::New(is->server.c_str()), ReadOnly); 500 500 arr->Set(String::New("service"), String::New(is->service.c_str()), ReadOnly); 501 arr->Set(String::New(" command"), Boolean::New(is->iscmd), ReadOnly);501 arr->Set(String::New("isCommand"), Boolean::New(is->iscmd), ReadOnly); 502 502 if (!is->format.empty()) 503 503 arr->Set(String::New("format"), String::New(is->format.c_str()), ReadOnly); … … 562 562 obj->Set(String::New("server"), String::New(is->server.c_str()), ReadOnly); 563 563 obj->Set(String::New("service"), String::New(is->service.c_str()), ReadOnly); 564 obj->Set(String::New(" command"), Boolean::New(is->iscmd), ReadOnly);564 obj->Set(String::New("isCommand"), Boolean::New(is->iscmd), ReadOnly); 565 565 if (!is->format.empty()) 566 566 obj->Set(String::New("format"), String::New(is->format.c_str()), ReadOnly);
Note:
See TracChangeset
for help on using the changeset viewer.