Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/dsf
diff options
context:
space:
mode:
authorAnton Leherbauer2015-07-14 13:14:38 +0000
committerAnton Leherbauer2015-07-14 13:14:38 +0000
commit7861db94e1e964c2c17b5cfdc3d736d501c74a81 (patch)
tree2b4a63e167e4f0fdcf98d2e7b263e7028e7c41f0 /dsf
parent654c2999e1b9fd43c716a8d144ab40ae25c10d2e (diff)
downloadorg.eclipse.cdt-7861db94e1e964c2c17b5cfdc3d736d501c74a81.tar.gz
org.eclipse.cdt-7861db94e1e964c2c17b5cfdc3d736d501c74a81.tar.xz
org.eclipse.cdt-7861db94e1e964c2c17b5cfdc3d736d501c74a81.zip
Fix capitalization of Run to Line, Move to Line, etc.
Diffstat (limited to 'dsf')
-rw-r--r--dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/internal/ui/EvaluationContextManager.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/internal/ui/EvaluationContextManager.java b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/internal/ui/EvaluationContextManager.java
index 98021f86ea3..69417a02f40 100644
--- a/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/internal/ui/EvaluationContextManager.java
+++ b/dsf/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/internal/ui/EvaluationContextManager.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2010 QNX Software Systems and others.
+ * Copyright (c) 2004, 2015 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -29,8 +29,8 @@ import org.eclipse.ui.PlatformUI;
* Manages the current evaluation context (stack frame) for evaluation actions.
* In each page, the selection is tracked in each debug view (if any). When a debug
* target selection exists, the "debuggerActive" System property is set to true.
- * This property is used to make the "Run To Line", "Resume At Line",
- * "Move To Line" and "Add Watch Expression" actions
+ * This property is used to make the "Run to Line", "Resume at Line",
+ * "Move to Line" and "Add Watch Expression" actions
* visible in editors only if there is a running debug session.
*/
public class EvaluationContextManager implements IWindowListener, IDebugContextListener {

Back to the top