Changeset 15044


Ignore:
Timestamp:
03/13/13 11:01:00 (12 years ago)
Author:
tbretz
Message:
Rename command property to isCommand
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/InterpreterV8.cc

    r15043 r15044  
    499499        arr->Set(String::New("server"), String::New(is->server.c_str()), ReadOnly);
    500500        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);
    502502        if (!is->format.empty())
    503503            arr->Set(String::New("format"), String::New(is->format.c_str()), ReadOnly);
     
    562562        obj->Set(String::New("server"), String::New(is->server.c_str()), ReadOnly);
    563563        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);
    565565        if (!is->format.empty())
    566566            obj->Set(String::New("format"), String::New(is->format.c_str()), ReadOnly);
Note: See TracChangeset for help on using the changeset viewer.