- Timestamp:
- 01/06/15 06:11:23 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/param/param.cpp
r286 r290 417 417 { 418 418 SString name(p0,p_len); 419 FMprintf("ParamInterface","load",FMLV_WARN,"Unknown property '%s' while loading object '%s'",(const char*)name,getName());419 FMprintf("ParamInterface","load",FMLV_WARN,"Unknown property '%s' while reading object '%s' (ignored)",(const char*)name,getName()); 420 420 } 421 421 … … 910 910 FMprintf("SimpleAbstractParam", "call", FMLV_ERROR, 911 911 (*pe->type != 'p') ? "'%s.%s' is not a function" : "Internal error - undefined function pointer for '%s.%s'", getName(), pe->id); 912 ret->setInvalid(); 912 913 } 913 914 } … … 999 1000 i = tmpi; 1000 1001 if (tmpi < 0) 1001 FMprintf("Param", "load2", FMLV_WARN, "Unknown property name for '%s' (ignored)", getName()); 1002 { 1003 SString name(t,(int)(equals_sign - t)); 1004 FMprintf("Param", "load2", FMLV_WARN, "Unknown property '%s' while reading object '%s' (ignored)",(const char*)name,getName()); 1005 } 1002 1006 t = equals_sign + 1; // t=value 1003 1007 }
Note: See TracChangeset
for help on using the changeset viewer.