forked from qt-creator/qt-creator
Debugger: Remove debuggerstringutils.h
With QT_RESTRICTED_CAST_FROM_ASCII making GdbMi etc operate on QString is feasible again. Take this as opportunity to move debugger encoding handling closer to a 'conversion on input and output if needed, storage in QString only' scheme. Change-Id: I2f10c9fa8a6c62c44f4e6682efe3769e9fba30f7 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -86,7 +86,7 @@ private:
|
||||
|
||||
void buildDebugIdHashRecursive(const QmlDebug::ObjectReference &ref);
|
||||
void addWatchData(const QmlDebug::ObjectReference &obj,
|
||||
const QByteArray &parentIname, bool append);
|
||||
const QString &parentIname, bool append);
|
||||
|
||||
enum LogDirection {
|
||||
LogSend,
|
||||
@@ -130,7 +130,7 @@ private:
|
||||
QList<quint32> m_objectTreeQueryIds;
|
||||
QStack<QmlDebug::ObjectReference> m_objectStack;
|
||||
QmlDebug::EngineReference m_engine;
|
||||
QHash<int, QByteArray> m_debugIdToIname;
|
||||
QHash<int, QString> m_debugIdToIname;
|
||||
QHash<int, QmlDebug::FileReference> m_debugIdLocations;
|
||||
DebugIdHash m_debugIdHash;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user