| 120 | } |
| 121 | |
| 122 | void rvDebuggerServer::OSPathToRelativePath( const char *osPath, idStr &qpath ) |
| 123 | { |
| 124 | if ( strchr( osPath, ':' ) ) // XXX: what about linux? |
| 125 | { |
| 126 | qpath = fileSystem->OSPathToRelativePath( osPath ); |
| 127 | } |
| 128 | else |
| 129 | { |
| 130 | qpath = osPath; |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | /* |
| 135 | ================ |
no outgoing calls
no test coverage detected