Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2014-05-06 10:38:41 +0000
committerUwe Stieber2014-05-06 10:39:31 +0000
commitbfab24ffeaca953cf9465d33c632d401bc942a0a (patch)
treeed7952bca05e1bc973679e12d21a4b181615c129
parentb5c15a08adcdcb0b383bd54b5567e9c188153c47 (diff)
downloadorg.eclipse.tcf-bfab24ffeaca953cf9465d33c632d401bc942a0a.tar.gz
org.eclipse.tcf-bfab24ffeaca953cf9465d33c632d401bc942a0a.tar.xz
org.eclipse.tcf-bfab24ffeaca953cf9465d33c632d401bc942a0a.zip
Terminals: Fix typo in PROP_TITLE constant
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/constants/ITerminalsConnectorConstants.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/constants/ITerminalsConnectorConstants.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/constants/ITerminalsConnectorConstants.java
index 4c84e6089..0d032dda4 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/constants/ITerminalsConnectorConstants.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/constants/ITerminalsConnectorConstants.java
@@ -28,7 +28,7 @@ public interface ITerminalsConnectorConstants {
/**
* Property: The title of the terminal tab to open.
*/
- public static final String PROP_TITLE = ".title"; //$NON-NLS-1$
+ public static final String PROP_TITLE = "title"; //$NON-NLS-1$
/**
* Property: The encoding of the terminal tab to open.

Back to the top