@@ -16,15 +16,15 @@ RcsXn rx;
1616RcsXn::RcsXn (QObject *parent) : QObject(parent), f_signal_edit(sigTemplates) {
1717 // XN events
1818 QObject::connect (&xn, SIGNAL (onError (QString)), this , SLOT (xnOnError (QString)));
19- QObject::connect (&xn, SIGNAL (onLog (QString, Xn::LogLevel)), this ,
20- SLOT (xnOnLog (QString, Xn::LogLevel)));
19+ QObject::connect (&xn, SIGNAL (onLog (QString,Xn::LogLevel)), this ,
20+ SLOT (xnOnLog (QString,Xn::LogLevel)));
2121 QObject::connect (&xn, SIGNAL (onConnect ()), this , SLOT (xnOnConnect ()));
2222 QObject::connect (&xn, SIGNAL (onDisconnect ()), this , SLOT (xnOnDisconnect ()));
2323 QObject::connect (&xn, SIGNAL (onTrkStatusChanged (Xn::TrkStatus)), this ,
2424 SLOT (xnOnTrkStatusChanged (Xn::TrkStatus)));
2525 QObject::connect (
26- &xn, SIGNAL (onAccInputChanged (uint8_t , bool , bool , Xn::FeedbackType, Xn::AccInputsState)),
27- this , SLOT (xnOnAccInputChanged (uint8_t , bool , bool , Xn::FeedbackType, Xn::AccInputsState))
26+ &xn, SIGNAL (onAccInputChanged (uint8_t ,bool ,bool ,Xn::FeedbackType,Xn::AccInputsState)),
27+ this , SLOT (xnOnAccInputChanged (uint8_t ,bool ,bool ,Xn::FeedbackType,Xn::AccInputsState))
2828 );
2929 QObject::connect (&m_acc_reset_timer, SIGNAL (timeout ()), this , SLOT (m_acc_reset_timer_tick ()));
3030 m_acc_reset_timer.setInterval (ACC_RESET_TIMER_PERIOD);
0 commit comments