mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix compilation problem
This commit is contained in:
parent
723b0df731
commit
6f7bbca839
1 changed files with 2 additions and 1 deletions
|
@ -10,6 +10,7 @@
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
package org.eclipse.dd.gdb.internal.ui.viewmodel;
|
package org.eclipse.dd.gdb.internal.ui.viewmodel;
|
||||||
|
|
||||||
|
import org.eclipse.cdt.debug.ui.ICDebugUIConstants;
|
||||||
import org.eclipse.dd.dsf.concurrent.ThreadSafe;
|
import org.eclipse.dd.dsf.concurrent.ThreadSafe;
|
||||||
import org.eclipse.dd.dsf.debug.internal.provisional.ui.viewmodel.expression.ExpressionVMProvider;
|
import org.eclipse.dd.dsf.debug.internal.provisional.ui.viewmodel.expression.ExpressionVMProvider;
|
||||||
import org.eclipse.dd.dsf.debug.internal.provisional.ui.viewmodel.modules.ModulesVMProvider;
|
import org.eclipse.dd.dsf.debug.internal.provisional.ui.viewmodel.modules.ModulesVMProvider;
|
||||||
|
@ -51,7 +52,7 @@ public class GdbViewModelAdapter extends AbstractDMVMAdapter
|
||||||
return new RegisterVMProvider(this, context, getSession());
|
return new RegisterVMProvider(this, context, getSession());
|
||||||
} else if (IDebugUIConstants.ID_EXPRESSION_VIEW.equals(context.getId()) ) {
|
} else if (IDebugUIConstants.ID_EXPRESSION_VIEW.equals(context.getId()) ) {
|
||||||
return new ExpressionVMProvider(this, context, getSession());
|
return new ExpressionVMProvider(this, context, getSession());
|
||||||
} else if (IDebugUIConstants.ID_MODULE_VIEW.equals(context.getId()) ) {
|
} else if (ICDebugUIConstants.ID_MODULES_VIEW.equals(context.getId()) ) {
|
||||||
return new ModulesVMProvider(this, context, getSession());
|
return new ModulesVMProvider(this, context, getSession());
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue