Index: sources/view/VEventSpy.cpp =================================================================== diff -u -rccba568494c6b7214116f818a0ac89d0fa3ba81b -r11560b63360025c294edabc6f5f6da97ad1f20c3 --- sources/view/VEventSpy.cpp (.../VEventSpy.cpp) (revision ccba568494c6b7214116f818a0ac89d0fa3ba81b) +++ sources/view/VEventSpy.cpp (.../VEventSpy.cpp) (revision 11560b63360025c294edabc6f5f6da97ad1f20c3) @@ -42,11 +42,9 @@ void VEventSpy::initConnections() { - // disabled coco begin validated: this code has been manually tested. // This should never happen with the current design and usage. // put here for developer safety if (Gui::_viewer) { - // disabled coco end QObject::connect(Gui::_viewer , SIGNAL( eventSpy(QEvent*)), this , SLOT(onEventSpy(QEvent*))); } @@ -62,7 +60,6 @@ QEvent::Type mType = vEvent->type(); switch (mType) { - // disabled coco begin validated: this code has been manually tested. // the only intention of this code is to be used for EMC testing and has been tested and is working fine. // Mouse case QEvent::Type::MouseButtonDblClick : mouseEventSpy(vEvent, "mD"); break; @@ -80,7 +77,6 @@ // Keyboard case QEvent::Type::KeyPress : keybdEventSpy(vEvent ); break; - // disabled coco end default : break; @@ -97,7 +93,6 @@ * \param vEvent - mouse event * \param vTypeName - mouse button type name */ -// disabled coco begin validated: this code has been manually tested. // the only intention of this code is to be used for EMC testing and has been tested and is working fine. void VEventSpy::mouseEventSpy(QEvent *vEvent, const QString &vTypeName) { @@ -138,24 +133,20 @@ .arg(y, 4, 10, QChar('0'))); #endif } -// disabled coco end -// disabled coco begin validated: this code has been manually tested. -// the only intention of this code is to be used for EMC testing and has been tested and is working fine. +// the only intention of this code is to be used for EMC testing. /*! * \brief VEventSpy::doMouseReset * \details mouse event count reset */ void VEventSpy::doMouseReset() { mouseCount(0); } -// disabled coco end /*! * \brief VEventSpy::touchEventSpy * \param vEvent - touch event * \param vTypeName - The type of the QEvent which has been shortened e.g. tB: TouchBegin */ -// disabled coco begin validated: this code has been manually tested. -// the only intention of this code is to be used for EMC testing and has been tested and is working fine. +// the only intention of this code is to be used for EMC testing. void VEventSpy::touchEventSpy(QEvent *vEvent, const QString &vTypeName) { QTouchEvent *touchEvent = static_cast(vEvent); @@ -181,20 +172,15 @@ } LOG_DEBUG( vTypeName + logString ); } -// disabled coco end -// disabled coco begin validated: this code has been manually tested. -// the only intention of this code is to be used for EMC testing and has been tested and is working fine. +// the only intention of this code is to be used for EMC. /*! * \brief VEventSpy::doTouchReset * \details touch event counter reset */ void VEventSpy::doTouchReset() { touchCount(0); } -// disabled coco end - -// disabled coco begin validated: this code has been manually tested. -// the only intention of this code is to be used for testing and has been tested and is working fine. +// the only intention of this code is to be used for testing. /*! * \brief VEventSpy::keybdEventSpy * \param vEvent @@ -238,4 +224,3 @@ break; } } -// disabled coco end