| 211 | } |
| 212 | |
| 213 | void CParameterBase::slotSetPluginParameters() |
| 214 | { |
| 215 | CParameterPlugin* pPlugin = GetPluginParameters(); |
| 216 | if(!pPlugin) { |
| 217 | QString szErr = "The CParameterClient is null"; |
| 218 | qCritical(log) << szErr; |
| 219 | Q_ASSERT_X(false, "CParameterBase", szErr.toStdString().c_str()); |
| 220 | return; |
| 221 | } |
| 222 | |
| 223 | SetAdaptWindows(pPlugin->GetAdaptWindows()); |
| 224 | |
| 225 | SetEnableLocalInputMethod(pPlugin->GetEnableLocalInputMethod()); |
| 226 | |
| 227 | m_Record = pPlugin->m_Record; |
| 228 | |
| 229 | return; |
| 230 | } |
| 231 | |
| 232 | bool CParameterBase::GetEnableLocalInputMethod() const |
| 233 | { |
nothing calls this directly
no test coverage detected