1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00
This commit is contained in:
Mikhail Khodjaiants 2005-12-28 00:10:27 +00:00
parent 34c3e374c4
commit 01b01243e5
5 changed files with 11 additions and 5 deletions

View file

@ -1,3 +1,8 @@
2005-12-27 Mikhail Khodjaiants
Cleanup.
* BreakpointManager.java
* RegisterManager.java
2005-12-27 Mikhail Khodjaiants
Bug 109526: Support Eclipse-LazyStart and deprecate Eclipse-AutoStart.
* MANIFEST.MF

View file

@ -775,14 +775,11 @@ public class BreakpointManager extends Manager {
// Put the condition now.
String exprCond = null;
int ignoreCount = 0;
String[] threadIds = null;
StringBuffer line = new StringBuffer();
ICDICondition condition = watchpoint.getCondition();
if (condition != null) {
exprCond = condition.getExpression();
ignoreCount = condition.getIgnoreCount();
threadIds = condition.getThreadIds();
}
if (exprCond != null && exprCond.length() > 0) {
MIBreakCondition breakCondition = factory.createMIBreakCondition(no, exprCond);

View file

@ -199,7 +199,7 @@ public class RegisterManager extends Manager {
Register reg = findRegister(regDesc);
if (reg == null) {
try {
String name = regDesc.getQualifiedName(); //$NON-NLS-1$
String name = regDesc.getQualifiedName();
Target target = (Target)regDesc.getTarget();
MISession mi = target.getMISession();
CommandFactory factory = mi.getCommandFactory();

View file

@ -1,3 +1,7 @@
2005-12-27 Mikhail Khodjaiants
Cleanup.
* MIUIPlugin.java
2005-12-27 Mikhail Khodjaiants
Bug 109526: Support Eclipse-LazyStart and deprecate Eclipse-AutoStart.
* MANIFEST.MF

View file

@ -60,7 +60,7 @@ public class MIUIPlugin extends AbstractUIPlugin {
// If the default instance is not yet initialized,
// return a static identifier. This identifier must
// match the plugin id defined in plugin.xml
return PLUGIN_ID; //$NON-NLS-1$
return PLUGIN_ID;
}
return getDefault().getBundle().getSymbolicName();
}