Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVivian Kong2007-05-17 20:44:19 +0000
committerVivian Kong2007-05-17 20:44:19 +0000
commit9dcb32ddf0cae6b375daaebc0f0dc9b976f6dd7f (patch)
tree214d5dbfe719ad7a959f201177b25e64586c7077 /debug/org.eclipse.cdt.debug.mi.ui
parent37073b19b79f7f50c817b9480d6f96a0cd9d8d06 (diff)
downloadorg.eclipse.cdt-9dcb32ddf0cae6b375daaebc0f0dc9b976f6dd7f.tar.gz
org.eclipse.cdt-9dcb32ddf0cae6b375daaebc0f0dc9b976f6dd7f.tar.xz
org.eclipse.cdt-9dcb32ddf0cae6b375daaebc0f0dc9b976f6dd7f.zip
Patch for bug 187128 by Jason Montojo - Type option does not resize correctly in Connection tab
Diffstat (limited to 'debug/org.eclipse.cdt.debug.mi.ui')
-rw-r--r--debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBServerDebuggerPage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBServerDebuggerPage.java b/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBServerDebuggerPage.java
index cdaed648dcf..e423bcc315d 100644
--- a/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBServerDebuggerPage.java
+++ b/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/GDBServerDebuggerPage.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2006 QNX Software Systems and others.
+ * Copyright (c) 2000, 2007 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -7,6 +7,7 @@
*
* Contributors:
* QNX Software Systems - Initial API and implementation
+ * IBM Corporation
*******************************************************************************/
package org.eclipse.cdt.debug.mi.internal.ui;
@@ -70,7 +71,6 @@ public class GDBServerDebuggerPage extends StandardGDBDebuggerPage {
fConnectionField.doFillIntoGrid( comp, 2 );
((GridData)fConnectionField.getComboControl( null ).getLayoutData()).horizontalAlignment = GridData.BEGINNING;
PixelConverter converter = new PixelConverter( comp );
- LayoutUtil.setWidthHint( fConnectionField.getComboControl( null ), converter.convertWidthInCharsToPixels( 15 ) );
fConnectionStack = ControlFactory.createCompositeEx( comp, 1, GridData.FILL_BOTH );
StackLayout stackLayout = new StackLayout();
fConnectionStack.setLayout( stackLayout );

Back to the top