Skip to main content
summaryrefslogtreecommitdiffstats
path: root/debug
diff options
context:
space:
mode:
authorVivian Kong2007-05-18 14:50:14 +0000
committerVivian Kong2007-05-18 14:50:14 +0000
commitc89e7032190f24e718b3a7dd95f2f73d395c6852 (patch)
tree826ebe43aad822988c9431297a146d6681af1f7d /debug
parentea86a3db2a2df82b86e5ef6d46123a1fcede459a (diff)
downloadorg.eclipse.cdt-c89e7032190f24e718b3a7dd95f2f73d395c6852.tar.gz
org.eclipse.cdt-c89e7032190f24e718b3a7dd95f2f73d395c6852.tar.xz
org.eclipse.cdt-c89e7032190f24e718b3a7dd95f2f73d395c6852.zip
Patch for bug 187321 by Jason Montojo - Button truncation on Add Directory Dialog
Diffstat (limited to 'debug')
-rw-r--r--debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/SolibSearchPathBlock.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/SolibSearchPathBlock.java b/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/SolibSearchPathBlock.java
index 3a803fe4b91..b0f1654cc5e 100644
--- a/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/SolibSearchPathBlock.java
+++ b/debug/org.eclipse.cdt.debug.mi.ui/src/org/eclipse/cdt/debug/mi/internal/ui/SolibSearchPathBlock.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;
@@ -113,7 +114,6 @@ public class SolibSearchPathBlock extends Observable implements IMILaunchConfigu
fBrowseButton = ControlFactory.createPushButton( subComp, MIUIMessages.getString( "GDBServerDebuggerPage.7" ) ); //$NON-NLS-1$
data = new GridData();
data.horizontalAlignment = GridData.FILL;
- data.widthHint = convertHorizontalDLUsToPixels( IDialogConstants.BUTTON_WIDTH );
fBrowseButton.setLayoutData( data );
fBrowseButton.addSelectionListener( new SelectionAdapter() {

Back to the top