src/declarative/qml/qdeclarativeinstruction.cpp
changeset 37 758a864f9613
parent 33 3e2da88830cd
equal deleted inserted replaced
36:ef0373b55136 37:758a864f9613
   216         break;
   216         break;
   217     case QDeclarativeInstruction::Defer:
   217     case QDeclarativeInstruction::Defer:
   218         qWarning().nospace() << idx << "\t\t" << line << "\t" << "DEFER" << "\t\t\t" << instr->defer.deferCount;
   218         qWarning().nospace() << idx << "\t\t" << line << "\t" << "DEFER" << "\t\t\t" << instr->defer.deferCount;
   219         break;
   219         break;
   220     default:
   220     default:
   221         qWarning().nospace() << idx << "\t\t" << line << "\t" << "XXX UNKOWN INSTRUCTION" << "\t" << instr->type;
   221         qWarning().nospace() << idx << "\t\t" << line << "\t" << "XXX UNKNOWN INSTRUCTION" << "\t" << instr->type;
   222         break;
   222         break;
   223     }
   223     }
   224 #endif // QT_NO_DEBUG_STREAM
   224 #endif // QT_NO_DEBUG_STREAM
   225 }
   225 }
   226 
   226