Skip to content

Commit

Permalink
Bug 579509 - IES423:(ICT) Missing space between two strings (eclipse-…
Browse files Browse the repository at this point in the history
…platform#14)

* Bug 579509 - IES423:(ICT) Missing space between two strings
- Fixed missing space between strings
- Added missing Eclipse Copy right note

Change-Id: Ie3bbd2ff42172d1cd5beb0269900cda1039e07d4
Signed-off-by: Niraj Modi <[email protected]>

* Bug 579509 - IES423:(ICT) Missing space between two strings
- Fixed missing space between strings
- Added missing Eclipse Copy right note

Change-Id: Ie3bbd2ff42172d1cd5beb0269900cda1039e07d4
Signed-off-by: Niraj Modi <[email protected]>
  • Loading branch information
niraj-modi authored Mar 31, 2022
1 parent f4c9d3b commit 721641d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Bundle-SymbolicName: org.eclipse.e4.tools.emf.editor3x;singleton:=true
Bundle-Version: 4.8.0.qualifier
Bundle-Version: 4.8.1.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-11
Require-Bundle: org.eclipse.ui;bundle-version="3.6.0",
org.eclipse.core.runtime;bundle-version="3.6.0",
Expand Down
2 changes: 1 addition & 1 deletion bundles/org.eclipse.e4.tools.emf.editor3x/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>eclipse.platform.ui.tools</groupId>
<artifactId>org.eclipse.e4.tools.emf.editor3x</artifactId>
<version>4.8.0-SNAPSHOT</version>
<version>4.8.1-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>

<properties>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
/*******************************************************************************
* Copyright (c) 2022 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Steven Spungin <[email protected]> - Bug 431735, Bug 437890, Bug 440469
Expand Down Expand Up @@ -114,9 +122,13 @@ protected Control createContents(Composite parent) {
{
final Composite container = new Composite(group, SWT.NONE);
container.setLayoutData(new GridData(GridData.FILL, GridData.CENTER, false, false, 2, 1));
fShowSearch = new BooleanFieldEditor(ModelEditorPreferences.TAB_FORM_SEARCH_SHOW,
Messages.ModelEditorPreferencePage_SearchableTree
+ Messages.ModelEditorPreferencePage_ForcesReadOnlyXMITab + Messages.ModelEditorPreferencePage_RequiresReopeningModel, container);
StringBuilder buffer = new StringBuilder(Messages.ModelEditorPreferencePage_SearchableTree);
buffer.append(" "); //$NON-NLS-1$
buffer.append(Messages.ModelEditorPreferencePage_ForcesReadOnlyXMITab);
buffer.append(" "); //$NON-NLS-1$
buffer.append(Messages.ModelEditorPreferencePage_RequiresReopeningModel);
fShowSearch = new BooleanFieldEditor(ModelEditorPreferences.TAB_FORM_SEARCH_SHOW, buffer.toString(),
container);
fShowSearch.setPage(this);
fShowSearch.setPreferenceStore(getPreferenceStore());
fShowSearch.load();
Expand Down

0 comments on commit 721641d

Please sign in to comment.