Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2008-01-07 11:23:24 +0000
committerTomasz Zarna2008-01-07 11:23:24 +0000
commit9b8946ed32e0c35d901463356883380e95a971a0 (patch)
treeaf5d75f49ced8371edc5add16916a1d103144c6f
parent5383ce16e508ddd698bbfa7c6bd53dcd5c1971fb (diff)
downloadeclipse.platform.team-9b8946ed32e0c35d901463356883380e95a971a0.tar.gz
eclipse.platform.team-9b8946ed32e0c35d901463356883380e95a971a0.tar.xz
eclipse.platform.team-9b8946ed32e0c35d901463356883380e95a971a0.zip
bug 214433: Borders missing on date selection fields
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryFilterDialog.java4
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/DateTagDialog.java4
2 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryFilterDialog.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryFilterDialog.java
index 71d4867d0..3936a880f 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryFilterDialog.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/CVSHistoryFilterDialog.java
@@ -86,12 +86,12 @@ public class CVSHistoryFilterDialog extends TrayDialog {
//"from" date
label = new Label(topLevel, SWT.NONE);
label.setText(CVSUIMessages.HistoryFilterDialog_fromDate);
- fromDate = new DateTime(topLevel, SWT.DATE);
+ fromDate = new DateTime(topLevel, SWT.DATE | SWT.BORDER);
//"to" date
label = new Label(topLevel, SWT.NONE);
label.setText(CVSUIMessages.HistoryFilterDialog_toDate);
- toDate = new DateTime(topLevel, SWT.DATE);
+ toDate = new DateTime(topLevel, SWT.DATE | SWT.BORDER);
initializeValues();
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 79881ff7d..10b99ebe3 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
@@ -42,7 +42,7 @@ public class DateTagDialog extends TrayDialog {
Composite composite = createComposite(parent, 2, false);
initializeDialogUnits(composite);
createLabel(composite, CVSUIMessages.DateTagDialog_0, 1);
- date = new DateTime(composite, SWT.DATE);
+ date = new DateTime(composite, SWT.DATE | SWT.BORDER);
}
public void initializeValues(Calendar calendar ) {
@@ -77,7 +77,7 @@ public class DateTagDialog extends TrayDialog {
initializeDialogUnits(composite);
includeTime = createCheckbox(composite, CVSUIMessages.DateTagDialog_1, 2);
createLabel(composite, CVSUIMessages.DateTagDialog_2, 1);
- time = new DateTime(composite, SWT.TIME);
+ time = new DateTime(composite, SWT.TIME | SWT.BORDER);
localTime = createRadioButton(composite, CVSUIMessages.DateTagDialog_3, 2);
utcTime = createRadioButton(composite, CVSUIMessages.DateTagDialog_4, 2);

Back to the top