Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2007-06-08 01:24:44 +0000
committermkersten2007-06-08 01:24:44 +0000
commit4c59aae8ab1306de5af04d4ecb68c8e0bafaa3fa (patch)
tree2cc34fad102030bdf4b07bdf6709be244f3563cd /org.eclipse.mylyn.bugzilla.ui
parentb0d5e7eaa955c4fcd86eb7096ba5753abbe65a7a (diff)
downloadorg.eclipse.mylyn.tasks-4c59aae8ab1306de5af04d4ecb68c8e0bafaa3fa.tar.gz
org.eclipse.mylyn.tasks-4c59aae8ab1306de5af04d4ecb68c8e0bafaa3fa.tar.xz
org.eclipse.mylyn.tasks-4c59aae8ab1306de5af04d4ecb68c8e0bafaa3fa.zip
NEW - bug 191406: rename Mylar project to Mylyn
https://bugs.eclipse.org/bugs/show_bug.cgi?id=191406
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.ui')
-rw-r--r--org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/wizard/NewBugzillaTaskWizard.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/wizard/NewBugzillaTaskWizard.java b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/wizard/NewBugzillaTaskWizard.java
index 6404ee155..26efac534 100644
--- a/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/wizard/NewBugzillaTaskWizard.java
+++ b/org.eclipse.mylyn.bugzilla.ui/src/org/eclipse/mylyn/internal/bugzilla/ui/wizard/NewBugzillaTaskWizard.java
@@ -17,13 +17,13 @@ import org.eclipse.jface.wizard.Wizard;
import org.eclipse.mylyn.internal.bugzilla.core.BugzillaAttributeFactory;
import org.eclipse.mylyn.internal.bugzilla.core.BugzillaCorePlugin;
import org.eclipse.mylyn.internal.bugzilla.ui.BugzillaUiPlugin;
-import org.eclipse.mylyn.internal.tasks.ui.TaskListPreferenceConstants;
import org.eclipse.mylyn.tasks.core.RepositoryTaskData;
import org.eclipse.mylyn.tasks.core.Task;
import org.eclipse.mylyn.tasks.core.TaskRepository;
import org.eclipse.mylyn.tasks.ui.TasksUiPlugin;
import org.eclipse.mylyn.tasks.ui.TasksUiUtil;
import org.eclipse.mylyn.tasks.ui.editors.NewTaskEditorInput;
+import org.eclipse.mylyn.tasks.ui.editors.TaskEditor;
import org.eclipse.ui.INewWizard;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchPage;
@@ -93,7 +93,7 @@ public class NewBugzillaTaskWizard extends Wizard implements INewWizard {
productPage.saveDataToModel();
NewTaskEditorInput editorInput = new NewTaskEditorInput(repository, taskData);
IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
- TasksUiUtil.openEditor(editorInput, TaskListPreferenceConstants.TASK_EDITOR_ID, page);
+ TasksUiUtil.openEditor(editorInput, TaskEditor.ID_EDITOR, page);
return true;
} catch (Exception e) {
productPage.applyToStatusLine(new Status(IStatus.ERROR, "not_used", 0,

Back to the top