set max items per line for CppString to 1
set the maximum items per line of 'DataCppString' to 1 because the setting doesn't do anything here and it is '1' for everything else (where max items per line does not matter).
This commit is contained in:
parent
d1444315d8
commit
5ad3be977c
|
@ -57,7 +57,7 @@ HexEditDialog::HexEditDialog(QWidget* parent) : QDialog(parent), ui(new Ui::HexE
|
|||
mTypes[DataCString] = FormatType { tr("C-Style String"), 1 };
|
||||
mTypes[DataCUnicodeString] = FormatType { tr("C-Style Unicode String"), 1 };
|
||||
mTypes[DataCShellcodeString] = FormatType { tr("C-Style Shellcode String"), 1 };
|
||||
mTypes[DataCppString] = FormatType { tr("C++-Style String"), 16 };
|
||||
mTypes[DataCppString] = FormatType { tr("C++-Style String"), 1 };
|
||||
mTypes[DataCppCharVector] = FormatType { tr("C++-Style Char Vector (Hex)"), 16 };
|
||||
mTypes[DataASMByte] = FormatType { tr("ASM-Style BYTE (Hex)"), 16 };
|
||||
mTypes[DataASMWord] = FormatType { tr("ASM-Style WORD (Hex)"), 12 };
|
||||
|
|
Loading…
Reference in New Issue