From 12725a516b21b3ff9f5fd50efcf1eccd405823bf Mon Sep 17 00:00:00 2001 From: "hyunsik.noh" Date: Mon, 5 Dec 2011 11:10:43 +0900 Subject: [PATCH] [Title] refix : remove column name in connection explorer [Type] Enhancement [Module] common [Priority] Minor --- .../tizen/common/connection/explorer/ConnectionExplorerPanel.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/com.samsung.tizen.common.connection/src/com/samsung/tizen/common/connection/explorer/ConnectionExplorerPanel.java b/com.samsung.tizen.common.connection/src/com/samsung/tizen/common/connection/explorer/ConnectionExplorerPanel.java index ae832bc..199ef5c 100644 --- a/com.samsung.tizen.common.connection/src/com/samsung/tizen/common/connection/explorer/ConnectionExplorerPanel.java +++ b/com.samsung.tizen.common.connection/src/com/samsung/tizen/common/connection/explorer/ConnectionExplorerPanel.java @@ -43,7 +43,6 @@ import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.FileDialog; import org.eclipse.swt.widgets.ToolItem; import org.eclipse.swt.widgets.Tree; -import org.eclipse.swt.widgets.TreeColumn; import org.eclipse.swt.widgets.TreeItem; import org.eclipse.ui.part.PluginTransfer; import org.eclipse.ui.part.PluginTransferData; @@ -130,8 +129,9 @@ public class ConnectionExplorerPanel extends Panel IPreferenceStore store = DdmUiPreferences.getStore(); // create columns - TableHelper.createTreeColumn(mTree, "", SWT.LEFT, - 1000, COLUMN_NAME, store); //$NON-NLS-1$ + TableHelper.createTreeColumn(mTree, "FileEntry", SWT.LEFT, + "abcdefghijklmnopqrstuvwz", COLUMN_NAME, store); //$NON-NLS-1$ + mTree.setHeaderVisible(false); mTreeViewer = new TreeViewer(mTree); // setup data provider -- 2.7.4