Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2004-11-22 18:32:12 +0000
committerMichael Valenta2004-11-22 18:32:12 +0000
commitbf2e0f64318d50f37d17772774030313d8ecdd7b (patch)
treeca5b0c914becccf64729afbc583a0cd7605c4f18 /bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/CheckoutAsProjectSelectionPage.java
parent0edefde1a2a4604e0907642d2f60dcf53ecb2e1e (diff)
downloadeclipse.platform.team-bf2e0f64318d50f37d17772774030313d8ecdd7b.tar.gz
eclipse.platform.team-bf2e0f64318d50f37d17772774030313d8ecdd7b.tar.xz
eclipse.platform.team-bf2e0f64318d50f37d17772774030313d8ecdd7b.zip
Bug 13460 [CVS UI] Ability to filter out unwanted CVS tags in UI
Bug 15101 [CVS Repo View] Filtering CVS tags for resource types + more I haven't found yet
Diffstat (limited to 'bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/CheckoutAsProjectSelectionPage.java')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/CheckoutAsProjectSelectionPage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/CheckoutAsProjectSelectionPage.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/CheckoutAsProjectSelectionPage.java
index b50f34f34..2b58b1c97 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/CheckoutAsProjectSelectionPage.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/CheckoutAsProjectSelectionPage.java
@@ -84,7 +84,7 @@ public class CheckoutAsProjectSelectionPage extends CVSWizardPage {
* @see org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
*/
public void createControl(Composite parent) {
- Composite composite= createComposite(parent, 2);
+ Composite composite= createComposite(parent, 2, false);
setControl(composite);
WorkbenchHelp.setHelp(composite, IHelpContextIds.CHECKOUT_PROJECT_SELECTION_PAGE);
@@ -109,7 +109,7 @@ public class CheckoutAsProjectSelectionPage extends CVSWizardPage {
}
});
- Composite filterComposite = createComposite(composite, 2);
+ Composite filterComposite = createComposite(composite, 2, false);
GridData data = new GridData();
data.verticalAlignment = GridData.FILL;
data.horizontalAlignment = GridData.FILL;

Back to the top