| 936 | } |
| 937 | |
| 938 | void |
| 939 | SequenceFileDialog::onRelativeChoiceChanged(int /*index*/) |
| 940 | { |
| 941 | ///Update the line edit text |
| 942 | std::string text = _selectionLineEdit->text().toStdString(); |
| 943 | std::map<std::string, std::string> env; |
| 944 | |
| 945 | _gui->getApp()->getProject()->getEnvironmentVariables(env); |
| 946 | Project::expandVariable(env, text); |
| 947 | |
| 948 | proxyAndSetLineEditText( QString::fromUtf8( text.c_str() ) ); |
| 949 | } |
| 950 | |
| 951 | void |
| 952 | SequenceFileDialog::onSelectionChanged() |
nothing calls this directly
no test coverage detected