1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 18:05:33 +02:00

Fix for PR 46592: Debug View shows Functions as func(type param,...)().

Return an empty string instead of "??" if the function name is not available.
This commit is contained in:
Mikhail Khodjaiants 2003-11-21 20:02:01 +00:00
parent 20ac1c6f2b
commit 4129594a78
2 changed files with 10 additions and 7 deletions

View file

@ -1,4 +1,4 @@
2003-11-13 Mikhail Khodjaiants
2003-11-21 Mikhail Khodjaiants
* src/org/eclipse/cdt/debug/mi/core/output/MIFrame.java
Fix for PR 46592: Debug View shows Functions as func(type param,...)().

View file

@ -89,13 +89,16 @@ public class MIFrame {
str = str.trim();
if ( str.equals( "??" ) )
func = "";
// In some situations gdb returns the function names that include parameter types.
// To make the presentation consistent truncate the parameters. PR 46592
int end = str.indexOf( '(' );
if ( end != -1 )
func = str.substring( 0, end );
else
func = str;
{
// In some situations gdb returns the function names that include parameter types.
// To make the presentation consistent truncate the parameters. PR 46592
int end = str.indexOf( '(' );
if ( end != -1 )
func = str.substring( 0, end );
else
func = str;
}
}
} else if (var.equals("file")) {
file = str;