Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDirk Fauth2022-06-03 05:02:05 +0000
committerDirk Fauth2022-06-03 05:02:05 +0000
commit1057bb9780955dfbf86bc9abf99eafb26294b574 (patch)
tree4cbea47bd0c4bb8c18d7a3587007a305229f83cc
parent5f5bf4d1de75a81c132aaa1d75c0f89dba05f5b0 (diff)
downloadorg.eclipse.nebula.widgets.nattable-1057bb9780955dfbf86bc9abf99eafb26294b574.tar.gz
org.eclipse.nebula.widgets.nattable-1057bb9780955dfbf86bc9abf99eafb26294b574.tar.xz
org.eclipse.nebula.widgets.nattable-1057bb9780955dfbf86bc9abf99eafb26294b574.zip
Bug 580066 - Given constructor argument ignored
Signed-off-by: Dirk Fauth <dirk.fauth@googlemail.com> Change-Id: I05579cd151fa848f5691d8947fc8eab173e00ffd
-rw-r--r--org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/widget/NatCombo.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/widget/NatCombo.java b/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/widget/NatCombo.java
index 2f2c7042..a09f267a 100644
--- a/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/widget/NatCombo.java
+++ b/org.eclipse.nebula.widgets.nattable.core/src/org/eclipse/nebula/widgets/nattable/widget/NatCombo.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2012, 2021 Original authors and others.
+ * Copyright (c) 2012, 2022 Original authors and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -362,7 +362,7 @@ public class NatCombo extends Composite {
* control is an open combo to the user.
*/
public NatCombo(Composite parent, IStyle cellStyle, int maxVisibleItems, int style, Image iconImage) {
- this(parent, cellStyle, maxVisibleItems, style, GUIHelper.getImage("down_2"), false); //$NON-NLS-1$
+ this(parent, cellStyle, maxVisibleItems, style, iconImage, false);
}
/**

Back to the top