| 924 | } |
| 925 | |
| 926 | void |
| 927 | SequenceFileDialog::onRelativeChoiceChanged(int /*index*/) |
| 928 | { |
| 929 | ///Update the line edit text |
| 930 | std::string text = _selectionLineEdit->text().toStdString(); |
| 931 | std::map<std::string, std::string> env; |
| 932 | |
| 933 | _gui->getApp()->getProject()->getEnvironmentVariables(env); |
| 934 | Project::expandVariable(env, text); |
| 935 | |
| 936 | proxyAndSetLineEditText( QString::fromUtf8( text.c_str() ) ); |
| 937 | } |
| 938 | |
| 939 | void |
| 940 | SequenceFileDialog::onSelectionChanged() |
nothing calls this directly
no test coverage detected