Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct bundle version after changes in MultiPageEditorPart #2476

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading