1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 18:05:33 +02:00

fix for bug 187048 - signal view column headings truncated

This commit is contained in:
Vivian Kong 2007-05-16 20:11:36 +00:00
parent 4389b2ff2c
commit 64d2ab62d8

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2004, 2006 QNX Software Systems and others. * Copyright (c) 2004, 2007 QNX Software Systems and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -7,6 +7,7 @@
* *
* Contributors: * Contributors:
* QNX Software Systems - Initial API and implementation * QNX Software Systems - Initial API and implementation
* IBM Corporation
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.debug.internal.ui.views.signals; package org.eclipse.cdt.debug.internal.ui.views.signals;
@ -63,8 +64,8 @@ public class SignalsViewer extends TableViewer {
new TableColumn( table, SWT.NULL ); new TableColumn( table, SWT.NULL );
TableColumn[] columns = table.getColumns(); TableColumn[] columns = table.getColumns();
columns[0].setResizable( true ); columns[0].setResizable( true );
columns[1].setResizable( false ); columns[1].setResizable( true );
columns[2].setResizable( false ); columns[2].setResizable( true );
columns[3].setResizable( true ); columns[3].setResizable( true );
columns[0].setText( CL_NAME ); columns[0].setText( CL_NAME );