| 1343 | //----------------------------------------------------------------------------- |
| 1344 | |
| 1345 | String String::collapseEscapes() const |
| 1346 | { |
| 1347 | char* tmp = dStrdup( c_str() ); |
| 1348 | collapseEscape( tmp ); |
| 1349 | String str( tmp ); |
| 1350 | dFree( tmp ); |
| 1351 | return str; |
| 1352 | } |
| 1353 | |
| 1354 | //----------------------------------------------------------------------------- |
| 1355 |
nothing calls this directly
no test coverage detected