forked from eclipse-platform/eclipse.platform.ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 579509 - IES423:(ICT) Missing space between two strings (eclipse-…
…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
1 parent
f4c9d3b
commit 721641d
Showing
3 changed files
with
17 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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(); | ||
|