Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2008-10-17 03:22:28 +0000
committerspingel2008-10-17 03:22:28 +0000
commit4e5deca6699b5d66efb9e2c35537eea08cdbb81d (patch)
treef6bf9dd72e27c7c6d06d9aa48f24a63ce787c33b /org.eclipse.mylyn.trac.ui
parentc038d3cf4e51af59c7f1a586553a6aad145c6e6b (diff)
downloadorg.eclipse.mylyn.tasks-4e5deca6699b5d66efb9e2c35537eea08cdbb81d.tar.gz
org.eclipse.mylyn.tasks-4e5deca6699b5d66efb9e2c35537eea08cdbb81d.tar.xz
org.eclipse.mylyn.tasks-4e5deca6699b5d66efb9e2c35537eea08cdbb81d.zip
NEW - bug 244579: [api] move task editor extension out of the sandbox
https://bugs.eclipse.org/bugs/show_bug.cgi?id=244579
Diffstat (limited to 'org.eclipse.mylyn.trac.ui')
-rw-r--r--org.eclipse.mylyn.trac.ui/src/org/eclipse/mylyn/internal/trac/ui/editor/TracTaskEditorPage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.trac.ui/src/org/eclipse/mylyn/internal/trac/ui/editor/TracTaskEditorPage.java b/org.eclipse.mylyn.trac.ui/src/org/eclipse/mylyn/internal/trac/ui/editor/TracTaskEditorPage.java
index 1ea1c51ae..d9e1c9a05 100644
--- a/org.eclipse.mylyn.trac.ui/src/org/eclipse/mylyn/internal/trac/ui/editor/TracTaskEditorPage.java
+++ b/org.eclipse.mylyn.trac.ui/src/org/eclipse/mylyn/internal/trac/ui/editor/TracTaskEditorPage.java
@@ -1,5 +1,5 @@
/*******************************************************************************
-* Copyright (c) 2006, 2008 Steffen Pingel and others.
+ * Copyright (c) 2006, 2008 Steffen Pingel 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
@@ -65,7 +65,7 @@ public class TracTaskEditorPage extends AbstractTaskEditorPage {
@Override
protected AttributeEditorFactory createAttributeEditorFactory() {
- AttributeEditorFactory factory = new AttributeEditorFactory(getModel(), getTaskRepository()) {
+ AttributeEditorFactory factory = new AttributeEditorFactory(getModel(), getTaskRepository(), getEditorSite()) {
@Override
public AbstractAttributeEditor createEditor(String type, TaskAttribute taskAttribute) {
if (TracAttribute.CC.getTracKey().equals(taskAttribute.getId())) {

Back to the top