[libpst-commits] r72 - trunk

Chris Halls halls at alioth.debian.org
Fri Jan 5 14:57:39 CET 2007


Author: halls
Date: 2007-01-05 14:57:38 +0100 (Fri, 05 Jan 2007)
New Revision: 72

Modified:
   trunk/ChangeLog
   trunk/libpst.c
Log:
Map IPM.Task items to PST_TYPE_TASK


Index: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	(revision 71)
+++ trunk/ChangeLog	(revision 72)
@@ -1,3 +1,10 @@
+LibPST svn snapshot
+===============================
+
+	* Map IPM.Task items to PST_TYPE_TASK.
+
+--
+
 LibPST 0.5.2 (29 December 2006)
 ===============================
 
Index: trunk/libpst.c
===================================================================
--- trunk/libpst.c	(revision 71)
+++ trunk/libpst.c	(revision 72)
@@ -1701,6 +1701,8 @@
 	  item->type = PST_TYPE_JOURNAL;
 	else if (pst_strincmp("IPM.Appointment", item->ascii_type, 15) == 0)
 	  item->type = PST_TYPE_APPOINTMENT;
+	else if (pst_strincmp("IPM.Task", item->ascii_type, 8) == 0)
+	  item->type = PST_TYPE_TASK;
 	else
 	  item->type = PST_TYPE_OTHER;
 



More information about the libpst-commits mailing list