[SCM] ktp-contact-list packaging branch, master, updated. debian/15.12.1-2-1070-g6c56f91

Maximiliano Curia maxy at moszumanska.debian.org
Sat May 28 00:13:46 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-contact-list.git;a=commitdiff;h=e645d21

The following commit has been merged in the master branch:
commit e645d21bdb598c812bc4812ca1fa81503bf6b068
Author: David Edmundson <kde at davidedmundson.co.uk>
Date:   Sat Aug 10 17:42:39 2013 +0100

    Add missing consts
---
 contact-list-widget.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/contact-list-widget.cpp b/contact-list-widget.cpp
index 8c67c13..0a2c3b4 100644
--- a/contact-list-widget.cpp
+++ b/contact-list-widget.cpp
@@ -635,7 +635,7 @@ void ContactListWidget::mousePressEvent(QMouseEvent *event)
 
     QTreeView::mousePressEvent(event);
 
-    QModelIndex index = indexAt(event->pos());
+    const QModelIndex index = indexAt(event->pos());
     d->shouldDrag = false;
     d->dragSourceGroup.clear();
 
@@ -656,7 +656,7 @@ void ContactListWidget::mouseMoveEvent(QMouseEvent *event)
 
     QTreeView::mouseMoveEvent(event);
 
-    QModelIndex index = indexAt(event->pos());
+    const QModelIndex index = indexAt(event->pos());
 
     if (!(event->buttons() & Qt::LeftButton)) {
         return;
@@ -714,7 +714,7 @@ void ContactListWidget::dropEvent(QDropEvent *event)
 {
     Q_D(ContactListWidget);
 
-    QModelIndex index = indexAt(event->pos());
+    const QModelIndex index = indexAt(event->pos());
 
     if (!index.isValid()) {
         return;

-- 
ktp-contact-list packaging



More information about the pkg-kde-commits mailing list