Skip to content

Commit 56115fc

Browse files
HeikoKlareiloveeclipse
authored andcommitted
Correct bundle version after changes in MultiPageEditorPart
Recent API changes to MultiPageEditorPart and IWorkbenchPreferenceConstants have been introduced after 3.133 has already been released. Thus, the micro version bump made since then is insufficient. This change corrects the version but and the according since tags to 3.134.
1 parent c1c681a commit 56115fc

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/IWorkbenchPreferenceConstants.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ public interface IWorkbenchPreferenceConstants {
634634
* The default value for this preference is: {@link SWT#BOTTOM}
635635
* </p>
636636
*
637-
* @since 3.133
637+
* @since 3.134
638638
*/
639639
String ALIGN_MULTI_PAGE_EDITOR_TABS = "ALIGN_MULTI_PAGE_EDITOR_TABS"; //$NON-NLS-1$
640640

@@ -726,7 +726,7 @@ public interface IWorkbenchPreferenceConstants {
726726
* runtime. It only effects Windows.
727727
* </p>
728728
*
729-
* @since 3.133
729+
* @since 3.134
730730
*/
731731
String RESCALING_AT_RUNTIME = "RESCALING_AT_RUNTIME"; //$NON-NLS-1$
732732
}

bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/MultiPageEditorPart.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ protected MultiPageEditorPart() {
172172
*
173173
* @param event the {@link PropertyChangeEvent} triggered by a change in the
174174
* preference store
175-
* @since 3.133
175+
* @since 3.134
176176
*/
177177
protected boolean isUpdateRequired(PropertyChangeEvent event) {
178178
if (event.getProperty().equals(IWorkbenchPreferenceConstants.ALIGN_MULTI_PAGE_EDITOR_TABS)) {
@@ -327,14 +327,14 @@ protected CTabFolder createContainer(Composite parent) {
327327
* @return {@code SWT.TOP} if the user prefers tabs to be aligned on top,
328328
* {@code SWT.BOTTOM} if the user prefers tabs to be aligned on the
329329
* bottom.
330-
* @since 3.133
330+
* @since 3.134
331331
*/
332332
protected int getTabStyle() {
333333
return getAPIPreferenceStore().getInt(IWorkbenchPreferenceConstants.ALIGN_MULTI_PAGE_EDITOR_TABS);
334334
}
335335

336336
/**
337-
* @since 3.133
337+
* @since 3.134
338338
*/
339339
protected IPreferenceStore getAPIPreferenceStore() {
340340
return PrefUtil.getAPIPreferenceStore();
@@ -1288,7 +1288,7 @@ public void run() {
12881288
* on the user preference.
12891289
* </p>
12901290
*
1291-
* @since 3.133
1291+
* @since 3.134
12921292
*/
12931293
protected void updateContainer() {
12941294
Composite container = getContainer();

bundles/org.eclipse.ui.workbench/META-INF/MANIFEST.MF

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: org.eclipse.ui.workbench; singleton:=true
5-
Bundle-Version: 3.133.100.qualifier
5+
Bundle-Version: 3.134.0.qualifier
66
Bundle-Activator: org.eclipse.ui.internal.WorkbenchPlugin
77
Bundle-ActivationPolicy: lazy
88
Bundle-Vendor: %providerName

0 commit comments

Comments
 (0)