- Timestamp:
- 03/11/14 14:30:23 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/vm/classes/collectionobj.cpp
r153 r164 386 386 out+=q; 387 387 out+="\":"; 388 out+=((ExtValue*)it->value)->serialize(); 388 if (it->value!=NULL) 389 out+=((ExtValue*)it->value)->serialize(); 390 else 391 out+="null"; 389 392 it++; 390 393 if (it.isValid()) out+=","; … … 408 411 out+=it->key; 409 412 out+=":"; 410 out+=((ExtValue*)it->value)->getString(); 413 if (it->value!=NULL) 414 out+=((ExtValue*)it->value)->getString(); 415 else 416 out+="null"; 411 417 it++; 412 418 if (it.isValid()) out+=",";
Note: See TracChangeset
for help on using the changeset viewer.