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

bug fixes.

This commit is contained in:
Alain Magloire 2002-08-26 05:24:26 +00:00
parent 8f1ca1e6e3
commit 6e1f807da1
3 changed files with 3 additions and 1 deletions

View file

@ -1,6 +1,7 @@
/*
* (c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.mi.core.output;

View file

@ -1,6 +1,7 @@
/*
* (c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.mi.core.output;

View file

@ -33,7 +33,7 @@ public class MIThreadSelectInfo extends MIInfo {
MIResult[] results = rr.getMIResults();
for (int i = 0; i < results.length; i++) {
String var = results[i].getVariable();
if (var.equals("new-thread-ids")) {
if (var.equals("new-thread-id")) {
MIValue value = results[i].getMIValue();
if (value instanceof MIConst) {
String str = ((MIConst)value).getCString();