Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod2005-02-04 20:02:05 +0000
committerCarolyn MacLeod2005-02-04 20:02:05 +0000
commit4d359c93449f23d98e1fdca5a172c957af823bc4 (patch)
tree4ae9569ce194842504457cc5258895fdb990cae6
parent5782ed835cc34300c35de16696ca0fbe1e498ed9 (diff)
downloadeclipse.platform.swt-4d359c93449f23d98e1fdca5a172c957af823bc4.tar.gz
eclipse.platform.swt-4d359c93449f23d98e1fdca5a172c957af823bc4.tar.xz
eclipse.platform.swt-4d359c93449f23d98e1fdca5a172c957af823bc4.zip
javadoc
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableColumn.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableColumn.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableColumn.java
index 3fe525c23c..821c49ef5c 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableColumn.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/TableColumn.java
@@ -291,8 +291,8 @@ public void pack () {
* Feature in Windows. When LVSCW_AUTOSIZE_USEHEADER is used
* with LVM_SETCOLUMNWIDTH to resize the last column, the last
* column is expanded to fill the client area. The fix is to
- * insert and remove a temporary column last column for the
- * duration of LVM_SETCOLUMNWIDTH.
+ * insert and remove a temporary last column for the duration
+ * of LVM_SETCOLUMNWIDTH.
*/
boolean fixWidth = index == parent.getColumnCount () - 1;
if (fixWidth) {
@@ -324,8 +324,8 @@ public void pack () {
* Feature in Windows. When LVSCW_AUTOSIZE_USEHEADER is used
* with LVM_SETCOLUMNWIDTH to resize the last column, the last
* column is expanded to fill the client area. The fix is to
- * insert and remove a temporary column last column for the
- * duration of LVM_SETCOLUMNWIDTH.
+ * insert and remove a temporary last column for the duration
+ * of LVM_SETCOLUMNWIDTH.
*/
boolean fixWidth = index == parent.getColumnCount () - 1;
if (fixWidth) {

Back to the top