QmlDesigner: Fix compile before Qt5.15

Change-Id: I0f2f363a691dda1a79f773ebf7885a68fbfcbaa9
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Stenger
2020-08-14 06:39:03 +02:00
parent 428d82c6bc
commit 7c60f10bf9

View File

@@ -70,7 +70,7 @@ void CapturingConnectionManager::writeCommand(const QVariant &command)
InteractiveConnectionManager::writeCommand(command);
if (m_captureFileForTest.isWritable()) {
qDebug() << "command name: " << QMetaType(command.userType()).name();
qDebug() << "command name: " << QMetaType::typeName(command.userType());
writeCommandToIODevice(command, &m_captureFileForTest, m_writeCommandCounter);
qDebug() << "\tcatpure file offset: " << m_captureFileForTest.pos();
}