Skip to content

Commit

Permalink
Correct bundle version after changes in MultiPageEditorPart
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
HeikoKlare committed Nov 1, 2024
1 parent 9308f4a commit 0cc0348
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ public interface IWorkbenchPreferenceConstants {
* The default value for this preference is: {@link SWT#BOTTOM}
* </p>
*
* @since 3.133
* @since 3.134
*/
String ALIGN_MULTI_PAGE_EDITOR_TABS = "ALIGN_MULTI_PAGE_EDITOR_TABS"; //$NON-NLS-1$

Expand Down Expand Up @@ -726,7 +726,7 @@ public interface IWorkbenchPreferenceConstants {
* runtime. It only effects Windows.
* </p>
*
* @since 3.133
* @since 3.134
*/
String RESCALING_AT_RUNTIME = "RESCALING_AT_RUNTIME"; //$NON-NLS-1$
}
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ protected MultiPageEditorPart() {
*
* @param event the {@link PropertyChangeEvent} triggered by a change in the
* preference store
* @since 3.133
* @since 3.134
*/
protected boolean isUpdateRequired(PropertyChangeEvent event) {
if (event.getProperty().equals(IWorkbenchPreferenceConstants.ALIGN_MULTI_PAGE_EDITOR_TABS)) {
Expand Down Expand Up @@ -327,14 +327,14 @@ protected CTabFolder createContainer(Composite parent) {
* @return {@code SWT.TOP} if the user prefers tabs to be aligned on top,
* {@code SWT.BOTTOM} if the user prefers tabs to be aligned on the
* bottom.
* @since 3.133
* @since 3.134
*/
protected int getTabStyle() {
return getAPIPreferenceStore().getInt(IWorkbenchPreferenceConstants.ALIGN_MULTI_PAGE_EDITOR_TABS);
}

/**
* @since 3.133
* @since 3.134
*/
protected IPreferenceStore getAPIPreferenceStore() {
return PrefUtil.getAPIPreferenceStore();
Expand Down Expand Up @@ -1288,7 +1288,7 @@ public void run() {
* on the user preference.
* </p>
*
* @since 3.133
* @since 3.134
*/
protected void updateContainer() {
Composite container = getContainer();
Expand Down
2 changes: 1 addition & 1 deletion bundles/org.eclipse.ui.workbench/META-INF/MANIFEST.MF
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: %pluginName
Bundle-SymbolicName: org.eclipse.ui.workbench; singleton:=true
Bundle-Version: 3.133.100.qualifier
Bundle-Version: 3.134.0.qualifier
Bundle-Activator: org.eclipse.ui.internal.WorkbenchPlugin
Bundle-ActivationPolicy: lazy
Bundle-Vendor: %providerName
Expand Down

0 comments on commit 0cc0348

Please sign in to comment.