| 836 | } |
| 837 | |
| 838 | void String::fromInt(int inIdx) |
| 839 | { |
| 840 | char buf[100]; |
| 841 | SPRINTF(buf,100,HX_INT_PATTERN,inIdx); |
| 842 | buf[99]='\0'; |
| 843 | __s = GCStringDup(buf,-1,&length); |
| 844 | } |
| 845 | |
| 846 | String::String(const int &inRHS) |
| 847 | { |
nothing calls this directly
no test coverage detected