Version: 3.5 (using KDE 3.5.0 Level "a" , SUSE 10.0 UNSUPPORTED) Compiler: Target: i586-suse-linux OS: Linux (i686) release 2.6.13-15-smp When making to-dos, you cannot apply a template to them. It appears when you click the Apply Template button, it checks the wrong path. /home/user/.kde/share/apps/korganizer/templates/Todo is the correct path. But it checks /ToDo.
Confirmed here. I assume the fix is (compiling and testing now): Index: kotodoeditor.h =================================================================== --- kotodoeditor.h (revision 486680) +++ kotodoeditor.h (working copy) @@ -95,7 +95,7 @@ protected: void loadTemplate( /*const*/ CalendarLocal& ); QStringList& templates() const; - QString type() { return "ToDo"; } + QString type() { return "Todo"; } void setupGeneral(); void setupRecurrence(); int msgItemDelete();
Hrm, that patch doesn't seem to do anything. I guess someone with a clue will have to take a look :-)
It could also be saving to the wrong place, but that would mean it is reading the wrong place too, to show the template lists. Shouldn't there be a single function for finding this folder, whether it is reading, writing or whatever?
SVN commit 598910 by winterz: Fix so you can actually use to-do templates after you create them. Phil: your fix does work. perhaps you forgot to click the [apply templates] button? BUGS: 118082 M +1 -1 kotodoeditor.h --- branches/KDE/3.5/kdepim/korganizer/kotodoeditor.h #598909:598910 @@ -95,7 +95,7 @@ protected: void loadTemplate( /*const*/ CalendarLocal& ); QStringList& templates() const; - QString type() { return "ToDo"; } + QString type() { return "Todo"; } void setupGeneral(); void setupRecurrence(); int msgItemDelete();