GUI: Normalize table headers
This commit is contained in:
parent
bbe499ebdf
commit
45393bda75
|
|
@ -9,12 +9,12 @@ MemoryMapView::MemoryMapView(StdTable* parent) : StdTable(parent)
|
|||
|
||||
int charwidth = getCharWidth();
|
||||
|
||||
addColumnAt(8 + charwidth * 2 * sizeof(uint_t), "ADDR", false, "Address"); //addr
|
||||
addColumnAt(8 + charwidth * 2 * sizeof(uint_t), "SIZE", false, "Size"); //size
|
||||
addColumnAt(8 + charwidth * 32, "INFO", false, "Page Information"); //page information
|
||||
addColumnAt(8 + charwidth * 3, "TYP", false, "Allocation Type"); //allocation type
|
||||
addColumnAt(8 + charwidth * 5, "CPROT", false, "Current Protection"); //current protection
|
||||
addColumnAt(8 + charwidth * 5, "APROT", false, "Allocation Protection"); //allocation protection
|
||||
addColumnAt(8 + charwidth * 2 * sizeof(uint_t), "Address", false, "Address"); //addr
|
||||
addColumnAt(8 + charwidth * 2 * sizeof(uint_t), "Size", false, "Size"); //size
|
||||
addColumnAt(8 + charwidth * 32, "Info", false, "Page Information"); //page information
|
||||
addColumnAt(8 + charwidth * 5, "Type", false, "Allocation Type"); //allocation type
|
||||
addColumnAt(8 + charwidth * 11, "Protection", false, "Current Protection"); //current protection
|
||||
addColumnAt(8 + charwidth * 8, "Initial", false, "Allocation Protection"); //allocation protection
|
||||
addColumnAt(100, "", false);
|
||||
|
||||
connect(Bridge::getBridge(), SIGNAL(updateMemory()), this, SLOT(refreshMap()));
|
||||
|
|
|
|||
|
|
@ -198,8 +198,8 @@ ThreadView::ThreadView(StdTable* parent) : StdTable(parent)
|
|||
#endif //_WIN64
|
||||
addColumnAt(8 + charwidth * 14, "Suspend Count", false);
|
||||
addColumnAt(8 + charwidth * 12, "Priority", false);
|
||||
addColumnAt(8 + charwidth * 16, "WaitReason", false);
|
||||
addColumnAt(8 + charwidth * 10, "LastError", false);
|
||||
addColumnAt(8 + charwidth * 12, "Wait Reason", false);
|
||||
addColumnAt(8 + charwidth * 11, "Last Error", false);
|
||||
addColumnAt(0, "Name", false);
|
||||
|
||||
//setCopyMenuOnly(true);
|
||||
|
|
|
|||
Loading…
Reference in New Issue