Removed QT_DEBUG_NO_OUTPUT variable from CMakeLists

Not needed anymore
This commit is contained in:
juliagoda
2020-03-09 16:17:08 +01:00
parent 461d93ba1b
commit 2cc6cf0b76
34 changed files with 72 additions and 299 deletions

View File

@@ -884,15 +884,14 @@ void InputDaemon::modifyUnplugEvents(QQueue<SDL_Event> *sdlEventQueue)
InputDeviceBitArrayStatus *generatedTemp = genIter.value();
QBitArray tempBitArray = generatedTemp->generateFinalBitArray();
#ifndef QT_DEBUG_NO_OUTPUT
qDebug() << "ARRAY: " << tempBitArray;
#endif
int bitArraySize = tempBitArray.size();
#ifndef QT_DEBUG_NO_OUTPUT
qDebug() << "ARRAY SIZE: " << bitArraySize;
#endif
if ((bitArraySize > 0) && (tempBitArray.count(true) == device->getNumberAxes()))
{