1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

Fix for bug 36909.

This commit is contained in:
Mikhail Khodjaiants 2003-04-25 21:11:59 +00:00
parent 3c1b1e9355
commit 452d55abef

View file

@ -84,7 +84,7 @@ public class MIFrame {
} catch (NumberFormatException e) {
}
} else if (var.equals("func")) {
func = ( str != null && str.indexOf( "??" ) != -1 ) ? "" : str;
func = ( str != null && str.equals( "??" ) ) ? "" : str;
} else if (var.equals("file")) {
file = str;
} else if (var.equals("line")) {