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:
parent
3c1b1e9355
commit
452d55abef
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ public class MIFrame {
|
||||||
} catch (NumberFormatException e) {
|
} catch (NumberFormatException e) {
|
||||||
}
|
}
|
||||||
} else if (var.equals("func")) {
|
} else if (var.equals("func")) {
|
||||||
func = ( str != null && str.indexOf( "??" ) != -1 ) ? "" : str;
|
func = ( str != null && str.equals( "??" ) ) ? "" : str;
|
||||||
} else if (var.equals("file")) {
|
} else if (var.equals("file")) {
|
||||||
file = str;
|
file = str;
|
||||||
} else if (var.equals("line")) {
|
} else if (var.equals("line")) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue