Index: sources/canbus/MessageInterpreter.cpp =================================================================== diff -u -r627b97843f87f5ca8fbd731c6c4a6d9fae4352ce -r6f2622be80fcaee8d71baf78404627381157970c --- sources/canbus/MessageInterpreter.cpp (.../MessageInterpreter.cpp) (revision 627b97843f87f5ca8fbd731c6c4a6d9fae4352ce) +++ sources/canbus/MessageInterpreter.cpp (.../MessageInterpreter.cpp) (revision 6f2622be80fcaee8d71baf78404627381157970c) @@ -678,15 +678,15 @@ /*! * \brief MessageInterpreter::updateUnhandledMessages - * \return this method is converting the general settings messages/unhandled group of settings to the message interpreter specific map structure. + * \return this method is converting the general settings messages/unhandled (Storage::Settings_Category_MessagesUnhandled) group of settings to the message interpreter specific map structure. * it is done for performance to keep the lookup table shorter and faster. * This method is called by the chain of events when Application controller is done reading the settings and emits it didSettingsDone, * which Message dispatcher is listening to will call this function in its signal handler slot. */ void MessageInterpreter::updateUnhandledMessages() { - // DEBUG: qDebug() << _Settings.groups("messages/unhandled"); - for(const auto group: _Settings.groups("Messages/Unhandled")) { + // DEBUG: qDebug() << _Settings.groups(Storage::Settings_Category_MessagesUnhandled); + for(const auto group: _Settings.groups(Storage::Settings_Category_MessagesUnhandled)) { // DEBUG: qDebug() << _Settings.keys(group); bool ok; quint16 id = QString(group).toUInt(&ok,16);