Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2006-11-27 20:35:00 +0000
committermkersten2006-11-27 20:35:00 +0000
commit79ef5f4170069cf1d40bbbb88a1ad24c0b5c92a9 (patch)
tree428d1b563e4356933f69831b57853bdc17e1fad8
parente3c5ca05b10998d0b9b85d12933ad598411c7630 (diff)
downloadorg.eclipse.mylyn.tasks-79ef5f4170069cf1d40bbbb88a1ad24c0b5c92a9.tar.gz
org.eclipse.mylyn.tasks-79ef5f4170069cf1d40bbbb88a1ad24c0b5c92a9.tar.xz
org.eclipse.mylyn.tasks-79ef5f4170069cf1d40bbbb88a1ad24c0b5c92a9.zip
RESOLVED - bug 165088: Add a "Open Remote Task" dialog
https://bugs.eclipse.org/bugs/show_bug.cgi?id=165088
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/commands/RemoteTaskSelectionDialog.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/commands/RemoteTaskSelectionDialog.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/commands/RemoteTaskSelectionDialog.java
index 52f12cf6b..d150f80a5 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/commands/RemoteTaskSelectionDialog.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/commands/RemoteTaskSelectionDialog.java
@@ -35,6 +35,7 @@ import org.eclipse.jface.viewers.ViewerFilter;
import org.eclipse.mylar.context.core.MylarStatusHandler;
import org.eclipse.mylar.internal.tasks.ui.TasksUiUtil;
import org.eclipse.mylar.internal.tasks.ui.views.TaskElementLabelProvider;
+import org.eclipse.mylar.internal.tasks.ui.views.TaskListView;
import org.eclipse.mylar.internal.tasks.ui.views.TaskRepositoryLabelProvider;
import org.eclipse.mylar.tasks.core.AbstractRepositoryConnector;
import org.eclipse.mylar.tasks.core.AbstractRepositoryTask;
@@ -118,7 +119,7 @@ public class RemoteTaskSelectionDialog extends SelectionStatusDialog {
});
Label matchingTasksLabel = new Label(area, SWT.NONE);
- matchingTasksLabel.setText("&Matching tasks:");
+ matchingTasksLabel.setText("&Matching tasks in " + TaskListView.LABEL_VIEW + ":");
tasksViewer = new TableViewer(area, SWT.SINGLE | SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL);
tasksViewer.getControl().setLayoutData(GridDataFactory.fillDefaults().grab(true, true).hint(400, 200).create());
tasksViewer.setLabelProvider(new DecoratingLabelProvider(new TaskElementLabelProvider(), PlatformUI

Back to the top