| 102 | } |
| 103 | |
| 104 | void TableInterface::SetEncoding(wxFontEncoding enc_type) |
| 105 | { |
| 106 | encoding_type = enc_type; |
| 107 | if (m_wx_encoding) delete m_wx_encoding; |
| 108 | m_wx_encoding = new wxCSConv(encoding_type); |
| 109 | table_state->notifyObservers(); |
| 110 | } |
| 111 | |
| 112 | wxString TableInterface::SuggestGroupName(std::vector<wxString> cols) const |
| 113 | { |
no test coverage detected