hwapi: remove unused dependency to QWidget

This commit is contained in:
2023-05-02 10:07:42 +02:00
parent 1ee1242a4c
commit 06333c792f
2 changed files with 2 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ static const QMap<QString, int> baudrateMap = {
{"57600" , 4}, {"115200" , 5}
};
hwapi::hwapi(QWidget *parent) : QObject(parent) {
hwapi::hwapi(QObject *parent) : QObject(parent) {
// create or attach shared memory segment
// !!! The compoment creating the shared memory MUST be ATBQT !!!
m_sharedMem = SharedMemBuffer::getShm(sizeof(SharedMemBuffer));