Compiles again.

This commit is contained in:
2026-01-02 01:52:48 +01:00
parent fc5ab611bd
commit acbd80c446
5 changed files with 14 additions and 11 deletions

View File

@@ -64,7 +64,7 @@ public:
public slots:
void onToggleConnectionState( bool connect );
void enqueueValueOp(const BCValue& value );
void enqueueValueOp(const BCValuePtr value );
void processValueOp();
signals:
@@ -74,7 +74,7 @@ signals:
private:
using BCDataQueue = QQueue<BCValue>;
using BCDataQueue = QQueue<BCValuePtr>;
BCDataQueue _valueQueue;
QMutex _mutex;