Bug 70795

Summary: Register display needs clean up
Product: [Applications] kdevelop Reporter: Jon Smirl <jonsmirl>
Component: CPP DebuggerAssignee: KDevelop Developers <kdevelop-devel>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: git master   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

Description Jon Smirl 2003-12-19 02:59:18 UTC
Version:           CVS (using KDE Devel)
Installed from:    Compiled sources

All of the windows in the debugger/viewer - like registers, memory, etc should be using the fixed font instead of proportional. I tried playing with all of the fonts settings but I couldn't figure out how to change it.

Also, the register/memory display should be using output formats with leading zeros and tabs so that things will line up. 

For example I see (in proportional fonts)
eax            0x1c3c 7228
ecx            0x0 0
edx            0x14 20
ebx            0x40397f18 1077509912

Instead of:
eax	0x00001c3c	7228
ecx	0x00000000	0
edx	0x00000014	20
ebx	0x40397f18	1077509912
Comment 1 Vladimir Prus 2005-05-20 09:59:10 UTC
In current SVN, the registers are showed OK. The memviewdlg.cpp has this:

    output_->setFont(KGlobalSettings::fixedFont());

so I believe this bug should be closed.
Comment 2 Vladimir Prus 2005-09-07 13:31:41 UTC
Closing this as fixes. Although eventually we'll rewrite the register view from ground up.