| 989 | } |
| 990 | |
| 991 | void Interception_Worker::saveDisabledKeyboardList() |
| 992 | { |
| 993 | #ifdef DEBUG_LOGOUT_ON |
| 994 | qDebug() << "[saveDisabledKeyboardList] Save disabledKeyboardList ->" << disabledKeyboardList; |
| 995 | #endif |
| 996 | |
| 997 | QSettings settingFile(CONFIG_FILENAME, QSettings::IniFormat); |
| 998 | #if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0)) |
| 999 | settingFile.setIniCodec("UTF-8"); |
| 1000 | #endif |
| 1001 | settingFile.setValue(DISABLED_KEYBOARDLIST , disabledKeyboardList); |
| 1002 | } |
| 1003 | |
| 1004 | void Interception_Worker::saveDisabledMouseList() |
| 1005 | { |
nothing calls this directly
no outgoing calls
no test coverage detected