| 201 | } |
| 202 | |
| 203 | File CtrlrPanelResource::getSourceFile() |
| 204 | { |
| 205 | String resourceSourcePath = getProperty(Ids::resourceSourceFile); |
| 206 | if (File::isAbsolutePath(resourceSourcePath)) |
| 207 | { |
| 208 | return (File(resourceSourcePath)); |
| 209 | } |
| 210 | else |
| 211 | { |
| 212 | return (owner.getOwner().getPanelResourcesDir().getChildFile(resourceSourcePath)); |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | void CtrlrPanelResource::setSourceFile(const File &sourceFile) |
| 217 | { |
nothing calls this directly
no test coverage detected