forked from qt-creator/qt-creator
Debugger: Use special values for translatable strings
... when passing data from the dumpers to the GUI. This reduces the need to guess whether a value contains a translatable string. Change-Id: I5e2210b8d028bd71f0087a2ba5c7c5b04331b882 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
@@ -240,7 +240,17 @@ enum DebuggerEncoding
|
||||
Hex2EncodedFloat8 = 26,
|
||||
IPv6AddressAndHexScopeId = 27,
|
||||
Hex2EncodedUtf8WithoutQuotes = 28,
|
||||
DateTimeInternal = 29
|
||||
DateTimeInternal = 29,
|
||||
SpecialEmptyValue = 30,
|
||||
SpecialUninitializedValue = 31,
|
||||
SpecialInvalidValue = 32,
|
||||
SpecialNotAccessibleValue = 33,
|
||||
SpecialItemCountValue = 34,
|
||||
SpecialMinimumItemCountValue = 35,
|
||||
SpecialNotCallableValue = 36,
|
||||
SpecialNullReferenceValue = 37,
|
||||
SpecialOptimizedOutValue = 38,
|
||||
SpecialEmptyStructureValue = 39
|
||||
};
|
||||
|
||||
// Keep in sync with dumper.py, symbolgroupvalue.cpp of CDB
|
||||
|
||||
Reference in New Issue
Block a user