[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:09 UTC 2016


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

The following commit has been merged in the master branch:
commit 0f4f0c491ccd77a069a2ee49839779412865b4c4
Author: Martin Klapetek <martin.klapetek at gmail.com>
Date:   Sun Apr 21 13:48:50 2013 +0200

    Handle pressing Esc key in the filter bar
    
    Pressing Esc key changes the text programatically, which textEdited()
    does not handle. Instead we use textChanged() which does handle
    programatically changed text, including pressing Esc key.
    
    Reviewed-by: David Edmundson
    BUG: 318663
    FIXED-IN: 0.6.2
---
 filter-bar.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/filter-bar.cpp b/filter-bar.cpp
index 9e4bca5..0144fcb 100644
--- a/filter-bar.cpp
+++ b/filter-bar.cpp
@@ -46,7 +46,7 @@ FilterBar::FilterBar(QWidget* parent) :
     m_filterInput = new KLineEdit(this);
     m_filterInput->setLayoutDirection(Qt::LeftToRight);
     m_filterInput->setClearButtonShown(true);
-    connect(m_filterInput, SIGNAL(textEdited(QString)),
+    connect(m_filterInput, SIGNAL(textChanged(QString)),
             this, SIGNAL(filterChanged(QString)));
     setFocusProxy(m_filterInput);
 

-- 
ktp-contact-list packaging



More information about the pkg-kde-commits mailing list