Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenrik Rentz-Reichert2016-07-08 05:42:39 +0000
committerHenrik Rentz-Reichert2016-07-08 05:42:39 +0000
commitf30548f6e04b93cf55d79a075bdf140add269b03 (patch)
tree08931af4ac6a818ea08647ec7262262bdd5bf853 /plugins/org.eclipse.etrice.generator.ui
parent60ac00df7d417c5d2d4bb7095a932d9990cba5d6 (diff)
downloadorg.eclipse.etrice-f30548f6e04b93cf55d79a075bdf140add269b03.tar.gz
org.eclipse.etrice-f30548f6e04b93cf55d79a075bdf140add269b03.tar.xz
org.eclipse.etrice-f30548f6e04b93cf55d79a075bdf140add269b03.zip
Changed text of main entry function in the eTrice C project wizard
Diffstat (limited to 'plugins/org.eclipse.etrice.generator.ui')
-rw-r--r--plugins/org.eclipse.etrice.generator.ui/src/org/eclipse/etrice/generator/ui/wizard/internal/COptionsPage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.etrice.generator.ui/src/org/eclipse/etrice/generator/ui/wizard/internal/COptionsPage.java b/plugins/org.eclipse.etrice.generator.ui/src/org/eclipse/etrice/generator/ui/wizard/internal/COptionsPage.java
index af54f5862..f7291a073 100644
--- a/plugins/org.eclipse.etrice.generator.ui/src/org/eclipse/etrice/generator/ui/wizard/internal/COptionsPage.java
+++ b/plugins/org.eclipse.etrice.generator.ui/src/org/eclipse/etrice/generator/ui/wizard/internal/COptionsPage.java
@@ -78,7 +78,7 @@ public class COptionsPage extends WizardPage {
copyRuntimeButton.setLayoutData(gd);
Label l = new Label(buttonComposite, SWT.NONE);
- l.setText("Select active platform:");
+ l.setText("Select active &platform:");
l.setLayoutData(new GridData(SWT.NONE));
platformCombo = new Combo(buttonComposite, SWT.READ_ONLY);
@@ -88,7 +88,7 @@ public class COptionsPage extends WizardPage {
platformCombo.setVisibleItemCount(10);
l = new Label(buttonComposite, SWT.NONE);
- l.setText("Main method name:");
+ l.setText("eTrice &entry function:");
l.setLayoutData(new GridData(SWT.NONE));
mainMethodName = new Text(buttonComposite, SWT.SINGLE | SWT.BORDER);

Back to the top