Changeset 171 for cpp/frams/vm/classes/collectionobj.cpp
- Timestamp:
- 03/13/14 01:00:33 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/vm/classes/collectionobj.cpp
r164 r171 266 266 } 267 267 268 VectorObject* VectorObject::fromObject(const ExtObject& o )269 { 270 return (VectorObject*)o.getTarget(par.getName() );268 VectorObject* VectorObject::fromObject(const ExtObject& o, bool warn) 269 { 270 return (VectorObject*)o.getTarget(par.getName(),true,warn); 271 271 } 272 272 … … 424 424 } 425 425 426 DictionaryObject* DictionaryObject::fromObject(const ExtObject& o )427 { 428 return (DictionaryObject*)o.getTarget(par.getName() );426 DictionaryObject* DictionaryObject::fromObject(const ExtObject& o, bool warn) 427 { 428 return (DictionaryObject*)o.getTarget(par.getName(), true, warn); 429 429 } 430 430
Note: See TracChangeset
for help on using the changeset viewer.