| 2835 | } |
| 2836 | |
| 2837 | bool NyquistBase::validatePath(wxString path) |
| 2838 | { |
| 2839 | wxFileName fname = path; |
| 2840 | wxString dir = fname.GetPath(); |
| 2841 | |
| 2842 | return ( |
| 2843 | fname.wxFileName::IsOk() && wxFileName::DirExists(dir) && |
| 2844 | !fname.GetFullName().empty()); |
| 2845 | } |
| 2846 | |
| 2847 | wxString NyquistBase::ToTimeFormat(double t) |
| 2848 | { |
nothing calls this directly
no test coverage detected