From 9f508f3c7dd42121c7fa36d98cf13a5caf378f4d Mon Sep 17 00:00:00 2001 From: wp_xyz Date: Sat, 11 Jun 2022 11:47:16 +0200 Subject: [PATCH] ToDoList: Fix caption of first exported column to be "Type" rather than "Done". --- components/todolist/todoliststrconsts.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/todolist/todoliststrconsts.pas b/components/todolist/todoliststrconsts.pas index 112955efd0..70d8d5fd58 100644 --- a/components/todolist/todoliststrconsts.pas +++ b/components/todolist/todoliststrconsts.pas @@ -25,7 +25,7 @@ unit ToDoListStrConsts; interface const - csvHeader = 'Done,Description,Priority,Module,Line,Owner,Category'; + csvHeader = 'Type,Description,Priority,Module,Line,Owner,Category'; resourcestring lisTodolistRefresh='Refresh todo items';