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:
@@ -54,7 +54,7 @@ public:
|
||||
|
||||
public:
|
||||
DebuggerLanguage language;
|
||||
QByteArray level;
|
||||
QString level;
|
||||
QString function;
|
||||
QString file; // We try to put an absolute file name in there.
|
||||
QString module; // Sometimes something like "/usr/lib/libstdc++.so.6"
|
||||
@@ -62,7 +62,7 @@ public:
|
||||
qint32 line;
|
||||
quint64 address;
|
||||
bool usable;
|
||||
QByteArray context; // Opaque value produced and consumed by the native backends.
|
||||
QString context; // Opaque value produced and consumed by the native backends.
|
||||
|
||||
Q_DECLARE_TR_FUNCTIONS(Debugger::Internal::StackHandler)
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user