Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcletavernie2013-03-14 13:57:52 +0000
committercletavernie2013-03-14 13:57:52 +0000
commit7c9ff82a5c7e4573eaf8bfaf51c8fe33462fe247 (patch)
tree1f31ca7e12473861416aa39516b96a299a666b13
parent1fbed10fc0b478f7187b00049f5cd5814fc2045a (diff)
downloadorg.eclipse.papyrus-7c9ff82a5c7e4573eaf8bfaf51c8fe33462fe247.tar.gz
org.eclipse.papyrus-7c9ff82a5c7e4573eaf8bfaf51c8fe33462fe247.tar.xz
org.eclipse.papyrus-7c9ff82a5c7e4573eaf8bfaf51c8fe33462fe247.zip
376976: [Widgets] Various bugfixes/improvements
https://bugs.eclipse.org/bugs/show_bug.cgi?id=376976
-rw-r--r--plugins/infra/widget/org.eclipse.papyrus.infra.widgets/src/org/eclipse/papyrus/infra/widgets/editors/MultipleValueSelectorDialog.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/infra/widget/org.eclipse.papyrus.infra.widgets/src/org/eclipse/papyrus/infra/widgets/editors/MultipleValueSelectorDialog.java b/plugins/infra/widget/org.eclipse.papyrus.infra.widgets/src/org/eclipse/papyrus/infra/widgets/editors/MultipleValueSelectorDialog.java
index 5f720019d1e..f2846bb75dc 100644
--- a/plugins/infra/widget/org.eclipse.papyrus.infra.widgets/src/org/eclipse/papyrus/infra/widgets/editors/MultipleValueSelectorDialog.java
+++ b/plugins/infra/widget/org.eclipse.papyrus.infra.widgets/src/org/eclipse/papyrus/infra/widgets/editors/MultipleValueSelectorDialog.java
@@ -217,7 +217,7 @@ public class MultipleValueSelectorDialog extends SelectionDialog implements ISel
* True if the values returned by this dialog should be unique
*/
public MultipleValueSelectorDialog(Shell parentShell, IElementSelector selector, String title, boolean unique, boolean ordered) {
- this(parentShell, selector, null, unique, false, MANY);
+ this(parentShell, selector, title, unique, false, MANY);
}
/**

Back to the top