forked from qt-creator/qt-creator
Fix build with Qt 6
Change-Id: I5c775460563dde17a363ea875d7f993e4e4d6ecd Reviewed-by: Leander Schulten <Leander.Schulten@rwth-aachen.de> Reviewed-by: Marco Bubke <marco.bubke@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -3168,7 +3168,7 @@ void GdbEngine::handleRegisterListing(const DebuggerResponse &response)
|
|||||||
reg.name = parts.at(0);
|
reg.name = parts.at(0);
|
||||||
reg.size = parts.at(4).toInt();
|
reg.size = parts.at(4).toInt();
|
||||||
reg.reportedType = parts.at(5);
|
reg.reportedType = parts.at(5);
|
||||||
reg.groups = parts.at(6).split(',').toSet();
|
reg.groups = Utils::toSet(parts.at(6).split(','));
|
||||||
m_registers[gdbRegisterNumber] = reg;
|
m_registers[gdbRegisterNumber] = reg;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -28,6 +28,7 @@
|
|||||||
#include <imagecacheauxiliarydata.h>
|
#include <imagecacheauxiliarydata.h>
|
||||||
#include <utils/smallstringview.h>
|
#include <utils/smallstringview.h>
|
||||||
|
|
||||||
|
#include <QIcon>
|
||||||
#include <QImage>
|
#include <QImage>
|
||||||
|
|
||||||
namespace QmlDesigner {
|
namespace QmlDesigner {
|
||||||
|
@@ -29,6 +29,7 @@
|
|||||||
|
|
||||||
#include <utils/smallstring.h>
|
#include <utils/smallstring.h>
|
||||||
|
|
||||||
|
#include <QIcon>
|
||||||
#include <QImage>
|
#include <QImage>
|
||||||
|
|
||||||
#include <condition_variable>
|
#include <condition_variable>
|
||||||
|
Reference in New Issue
Block a user