Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Loskutov2015-07-26 16:59:53 +0000
committerAndrey Loskutov2015-07-26 16:59:53 +0000
commite4f82fa3ab9eafa291bf2e68a4d7755703dd3524 (patch)
tree747f527d8d59a6e16350d78128641b41c6405064
parent47f7ce7ddf352e2f5ea2bb2cbb688f018974bff8 (diff)
downloadeclipse.platform.ui-e4f82fa3ab9eafa291bf2e68a4d7755703dd3524.tar.gz
eclipse.platform.ui-e4f82fa3ab9eafa291bf2e68a4d7755703dd3524.tar.xz
eclipse.platform.ui-e4f82fa3ab9eafa291bf2e68a4d7755703dd3524.zip
Bug 472690 - Allow construction of MessageDialog with varargs
Fixed API check error on JFace, minor version must be incremented if adding new API. Change-Id: I8a6cd19b99f730e6bb9d0c1db8a3733e44af2d28 Signed-off-by: Andrey Loskutov <loskutov@gmx.de>
-rw-r--r--bundles/org.eclipse.jface/META-INF/MANIFEST.MF2
-rw-r--r--bundles/org.eclipse.jface/pom.xml4
-rw-r--r--bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/MessageDialog.java2
3 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.jface/META-INF/MANIFEST.MF b/bundles/org.eclipse.jface/META-INF/MANIFEST.MF
index 088eb4876a9..2ddeeaeb58e 100644
--- a/bundles/org.eclipse.jface/META-INF/MANIFEST.MF
+++ b/bundles/org.eclipse.jface/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.jface;singleton:=true
-Bundle-Version: 3.11.0.qualifier
+Bundle-Version: 3.12.0.qualifier
Bundle-ClassPath: .
Bundle-Vendor: %providerName
Bundle-Localization: plugin
diff --git a/bundles/org.eclipse.jface/pom.xml b/bundles/org.eclipse.jface/pom.xml
index 391b041ff59..5d478ca2793 100644
--- a/bundles/org.eclipse.jface/pom.xml
+++ b/bundles/org.eclipse.jface/pom.xml
@@ -5,7 +5,7 @@
are made available under the terms of the Eclipse Distribution License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/org/documents/edl-v10.php
-
+
Contributors:
Igor Fedorenko - initial implementation
-->
@@ -19,7 +19,7 @@
</parent>
<groupId>org.eclipse.jface</groupId>
<artifactId>org.eclipse.jface</artifactId>
- <version>3.11.0-SNAPSHOT</version>
+ <version>3.12.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<build>
<plugins>
diff --git a/bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/MessageDialog.java b/bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/MessageDialog.java
index 6b02e49ea1f..7a77d1b2b04 100644
--- a/bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/MessageDialog.java
+++ b/bundles/org.eclipse.jface/src/org/eclipse/jface/dialogs/MessageDialog.java
@@ -223,7 +223,7 @@ public class MessageDialog extends IconAndMessageDialog {
* @param dialogButtonLabels
* varargs of Strings for the button labels in the button bar
*
- * @since 3.11
+ * @since 3.12
*/
public MessageDialog(Shell parentShell, String dialogTitle, Image dialogTitleImage, String dialogMessage,
int dialogImageType, int defaultIndex, String... dialogButtonLabels) {

Back to the top