Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2004-06-09 15:05:43 +0000
committerMichael Valenta2004-06-09 15:05:43 +0000
commit6454667372fd24216e8a0fcceb0eb1651b86d513 (patch)
tree3534db149b0b3705a246083ae8f350440d071739 /bundles
parenta9264c6a40e9066902dfcecdcc841e8151c9ab76 (diff)
downloadeclipse.platform.team-6454667372fd24216e8a0fcceb0eb1651b86d513.tar.gz
eclipse.platform.team-6454667372fd24216e8a0fcceb0eb1651b86d513.tar.xz
eclipse.platform.team-6454667372fd24216e8a0fcceb0eb1651b86d513.zip
Bug 63646 DBCS: length of fields on Create date tag should be increased
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/DateTagDialog.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/DateTagDialog.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/DateTagDialog.java
index dc30644ad..fd3aa8a7a 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/DateTagDialog.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/DateTagDialog.java
@@ -49,6 +49,7 @@ public class DateTagDialog extends Dialog {
createLabel(composite, Policy.bind("DateTagDialog.0"), 1); //$NON-NLS-1$
fromMonthCombo = new Combo(composite, SWT.READ_ONLY);
fromDayCombo = new Combo(composite, SWT.READ_ONLY);
+ fromDayCombo.setTextLimit(2);
fromYearCombo = new Combo(composite, SWT.NONE);
fromYearCombo.setTextLimit(4);
@@ -127,8 +128,11 @@ public class DateTagDialog extends Dialog {
dateLayout.numColumns = 3;
dateComposite.setLayout(dateLayout);
hourCombo = new Combo(dateComposite, SWT.READ_ONLY);
+ hourCombo.setTextLimit(2);
minuteCombo = new Combo(dateComposite, SWT.READ_ONLY);
+ minuteCombo.setTextLimit(2);
secondCombo = new Combo(dateComposite, SWT.READ_ONLY);
+ secondCombo.setTextLimit(2);
localTime = createRadioButton(composite, Policy.bind("DateTagDialog.3"), 2); //$NON-NLS-1$
utcTime = createRadioButton(composite, Policy.bind("DateTagDialog.4"), 2); //$NON-NLS-1$

Back to the top