| 3866 | } |
| 3867 | |
| 3868 | void |
| 3869 | OfxStringInstance::projectEnvVar_getProxy(std::string& str) const |
| 3870 | { |
| 3871 | KnobIPtr knob = getKnob(); |
| 3872 | if (!knob) { |
| 3873 | return; |
| 3874 | } |
| 3875 | KnobHolder* holder = knob->getHolder(); |
| 3876 | if (!holder) { |
| 3877 | return; |
| 3878 | } |
| 3879 | AppInstancePtr app = holder->getApp(); |
| 3880 | if (!app) { |
| 3881 | return; |
| 3882 | } |
| 3883 | ProjectPtr proj = app->getProject(); |
| 3884 | if (!proj) { |
| 3885 | return; |
| 3886 | } |
| 3887 | proj->canonicalizePath(str); |
| 3888 | } |
| 3889 | |
| 3890 | void |
| 3891 | OfxStringInstance::projectEnvVar_setProxy(std::string& str) const |
nothing calls this directly
no test coverage detected