Sophie

Sophie

distrib > Mageia > 5 > i586 > by-pkgid > ddfeee3bedf84e44f20049fdcc070a8a > files > 42

kdepimlibs4-4.14.10-2.2.mga5.src.rpm

From c854446f0227e19ed1cf21cb4389a7cafe13d133 Mon Sep 17 00:00:00 2001
From: Montel Laurent <laurent.montel@kdab.com>
Date: Tue, 26 Jul 2016 13:51:54 +0000
Subject: [PATCH 41/47] Fix warning

---
 kcalutils/incidenceformatter.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kcalutils/incidenceformatter.cpp b/kcalutils/incidenceformatter.cpp
index e233a9f5f..2fa5716da 100644
--- a/kcalutils/incidenceformatter.cpp
+++ b/kcalutils/incidenceformatter.cpp
@@ -1618,7 +1618,7 @@ static QString invitationCommentsIncidence(const Incidence::Ptr &incidence, bool
         html += QLatin1String("<table><tr>\n<td class=\"leftColumn\">");
         if (comments.count() > 1) {
             html += i18n("Comments:") + QLatin1String("</td>\n<td>\n<ul>\n");
-            for (uint i = 0; i < comments.count(); ++i) {
+            for (int i = 0; i < comments.count(); ++i) {
                 html += QLatin1String("<li>") + comments[i] + QLatin1String("</li>\n");
             }
             html += QLatin1String("</ul>\n");
-- 
2.14.1