| 1019 | } |
| 1020 | |
| 1021 | QString SQLiteDB::getAbsolutePath(int ohfi) |
| 1022 | { |
| 1023 | int root_ohfi = ohfi < OHFI_BASE_VALUE ? ohfi : getRootId(ohfi); |
| 1024 | QString base_path = getBasePath(root_ohfi); |
| 1025 | QString rel_path = getRelativePath(ohfi); |
| 1026 | return rel_path.isNull() ? base_path : base_path + "/" + rel_path; |
| 1027 | } |
| 1028 | |
| 1029 | QString SQLiteDB::getRelativePath(int ohfi) |
| 1030 | { |
nothing calls this directly
no outgoing calls
no test coverage detected