Skip to content

Commit

Permalink
Missing connections
Browse files Browse the repository at this point in the history
  • Loading branch information
etet100 committed Mar 24, 2024
1 parent fd40361 commit 0f1742c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/candle/frmmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ frmMain::frmMain(QWidget *parent) :
connect(this, SIGNAL(workPosChanged(QVector3D)), this, SLOT(onWorkPosChanged(QVector3D)));
connect(this, SIGNAL(deviceStateReceived(DeviceState)), this, SLOT(onDeviceStateReceived(DeviceState)));
connect(this, SIGNAL(deviceStateChanged(DeviceState)), this, SLOT(onDeviceStateChanged(DeviceState)));
connect(this, SIGNAL(spindleStateReceived(bool)), this, SLOT(onSpindleStateReceived(bool)));
connect(this, SIGNAL(floodStateReceived(bool)), this, SLOT(onFloodStateReceived(bool)));

// Initializing variables
m_deviceStatuses[DeviceUnknown] = "Unknown";
Expand Down

0 comments on commit 0f1742c

Please sign in to comment.