[Bug 249682] build failure - const issue in dataengines/calendar/eventdatacontainer.cpp

tropikhajma tropikhajma at gmail.com
Mon Sep 6 22:30:58 BST 2010


https://bugs.kde.org/show_bug.cgi?id=249682





--- Comment #4 from tropikhajma <tropikhajma gmail com>  2010-09-06 23:30:57 ---
the below modification to kdepimlibs helped me to proceed. Trying the full
build ...

--- /opt/kde4/include/akonadi/itempayloadinternals_p.h.orig     2010-09-06
23:28:24.275353090 +0200
+++ /opt/kde4/include/akonadi/itempayloadinternals_p.h  2010-09-06
23:28:35.947432429 +0200
@@ -70,7 +70,7 @@

 template <typename T>
 struct clone_traits_helper<T,true> {
-    static T * clone( const T * t ) { return t ? t->clone() : 0 ; }
+    static T * clone( T * t ) { return t ? t->clone() : 0 ; }
 };

 template <typename T>

-- 
Configure bugmail: https://bugs.kde.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.



More information about the Kdepim-bugs mailing list