summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java
index 04fa692450..c3421b150d 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabItem.java
@@ -507,7 +507,7 @@ void drawRightUnselectedBorder(GC gc) {
if (this.parent.onBottom) {
int[] right = parent.simple
- ? CTabFolder.SIMPLE_BOTTOM_RIGHT_CORNER
+ ? CTabFolder.SIMPLE_UNSELECTED_INNER_CORNER
: CTabFolder.BOTTOM_RIGHT_CORNER;
shape = new int[right.length + 2];
@@ -521,7 +521,7 @@ void drawRightUnselectedBorder(GC gc) {
shape[index++] = y - 1;
} else {
int[] right = parent.simple
- ? CTabFolder.SIMPLE_TOP_RIGHT_CORNER
+ ? CTabFolder.SIMPLE_UNSELECTED_INNER_CORNER
: CTabFolder.TOP_RIGHT_CORNER;
shape = new int[right.length + 2];
@@ -563,7 +563,7 @@ void drawLeftUnselectedBorder(GC gc) {
int[] shape = null;
if (this.parent.onBottom) {
int[] left = parent.simple
- ? CTabFolder.SIMPLE_BOTTOM_LEFT_CORNER
+ ? CTabFolder.SIMPLE_UNSELECTED_INNER_CORNER
: CTabFolder.BOTTOM_LEFT_CORNER;
shape = new int[left.length + 2];
@@ -576,7 +576,7 @@ void drawLeftUnselectedBorder(GC gc) {
}
} else {
int[] left = parent.simple
- ? CTabFolder.SIMPLE_TOP_LEFT_CORNER
+ ? CTabFolder.SIMPLE_UNSELECTED_INNER_CORNER
: CTabFolder.TOP_LEFT_CORNER;
shape = new int[left.length + 2];