| 6903 | SetEncodingCheckmarks(wxFONTENCODING_UTF8); |
| 6904 | } |
| 6905 | void GdaFrame::OnEncodingUTF16(wxCommandEvent& event) |
| 6906 | { |
| 6907 | if (!project_p) return; |
| 6908 | project_p->GetTableInt()->SetEncoding(wxFONTENCODING_UTF16LE); |
| 6909 | SetEncodingCheckmarks(wxFONTENCODING_UTF16LE); |
| 6910 | } |
| 6911 | void GdaFrame::OnEncodingWindows1250(wxCommandEvent& event) |
| 6912 | { |
| 6913 | if (!project_p) return; |
nothing calls this directly
no test coverage detected