1
0
Fork 0

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:
John 2022-01-18 15:06:43 +01:00 committed by GitHub
parent d1444315d8
commit 5ad3be977c
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 };