Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2005-12-09 20:37:19 +0000
committermkersten2005-12-09 20:37:19 +0000
commitf15fe96cd4abc78dde826107ef5dff3b11877dbc (patch)
tree96cf2c84a7b8124b7ac0561fcb2c3a7904d2a7fe
parentcfb8fe3e99f274300043745ad826fb3eb5c2e67e (diff)
downloadorg.eclipse.mylyn.tasks-f15fe96cd4abc78dde826107ef5dff3b11877dbc.tar.gz
org.eclipse.mylyn.tasks-f15fe96cd4abc78dde826107ef5dff3b11877dbc.tar.xz
org.eclipse.mylyn.tasks-f15fe96cd4abc78dde826107ef5dff3b11877dbc.zip
Completed: Bug 118461: code assist for static methods/fields not working
https://bugs.eclipse.org/bugs/show_bug.cgi?id=118461
-rw-r--r--org.eclipse.mylyn.help.ui/doc/faq.html7
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/preferences/MylarTaskListPreferencePage.java2
2 files changed, 5 insertions, 4 deletions
diff --git a/org.eclipse.mylyn.help.ui/doc/faq.html b/org.eclipse.mylyn.help.ui/doc/faq.html
index 6692ed788..69cae8ea8 100644
--- a/org.eclipse.mylyn.help.ui/doc/faq.html
+++ b/org.eclipse.mylyn.help.ui/doc/faq.html
@@ -69,13 +69,14 @@ version.</p>
<img border="0" src="images/faq/eclipse-manage-configuration.gif" width="679" height="335"></p>
<p>
&nbsp;</p>
-<h3><a name="tasklist-blank">Why did my tasks disappear?</a></h3>
+<h3><a name="tasklist-blank">Why did my tasks disappear?</a>&nbsp;&nbsp;&nbsp; </h3>
<p>Either because Mylar failed to <a href="#install-failure">install or update</a>,
or because there was a problem reading the task list.&nbsp; By default Mylar
keeps your task list in &lt;workspace&gt;/.mylar/tasklist.xml.&nbsp; If you move
workspaces, and have not changed the Mylar data directory via the Task List
-preference page, the new location will be used when Eclipse restarts.&nbsp; If
-your tasks ever disappear please
+preference page, the new location will be used when Eclipse restarts (hit
+Restore Defaults on that page to copy tasks back to the default location).&nbsp;
+If your tasks ever disappear please
<a href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Mylar">report this
as a critical bug</a>, and check the .mylar folder for a tasklist-backup.xml
file, which will contain the previous state task list.&nbsp; Make sure to copy
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/preferences/MylarTaskListPreferencePage.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/preferences/MylarTaskListPreferencePage.java
index c43efa8cf..64037e496 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/preferences/MylarTaskListPreferencePage.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/preferences/MylarTaskListPreferencePage.java
@@ -141,7 +141,7 @@ public class MylarTaskListPreferencePage extends PreferencePage implements IWork
public void performDefaults() {
super.performDefaults();
-
+ copyExistingDataCheckbox.setSelection(true);
// IPath rootPath = ResourcesPlugin.getWorkspace().getRoot().getLocation();
// String taskDirectory = rootPath.toString() + "/" + MylarPlugin.DATA_DIR_NAME;
taskDirectoryText.setText(MylarPlugin.getDefault().getDefaultDataDirectory());

Back to the top