179105 - Revert CTabItem unselected tab separator style for simple tabs
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
index c5bad5c..530f24d 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CTabFolder.java
@@ -216,6 +216,7 @@
 	static final int[] SIMPLE_TOP_RIGHT_CORNER = new int[] {-2,0, -1,1, 0,2};
 	static final int[] SIMPLE_BOTTOM_LEFT_CORNER = new int[] {0,-2, 1,-1, 2,0};
 	static final int[] SIMPLE_BOTTOM_RIGHT_CORNER = new int[] {-2,0, -1,-1, 0,-2};
+	static final int[] SIMPLE_UNSELECTED_INNER_CORNER = new int[] {0,0};
 
 	static final int[] TOP_LEFT_CORNER_BORDERLESS = new int[] {0,6, 1,5, 1,4, 4,1, 5,1, 6,0};
 	static final int[] TOP_RIGHT_CORNER_BORDERLESS = new int[] {-7,0, -6,1, -5,1, -2,4, -2,5, -1,6};
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 04fa692..c3421b1 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 @@
 
 	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 @@
 		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 @@
 	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 @@
 		}
 	} 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];