[SCM] ktp-text-ui packaging branch, master, updated. debian/15.12.1-1-1918-gdf4b0ec

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


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-text-ui.git;a=commitdiff;h=42cf29d

The following commit has been merged in the master branch:
commit 42cf29d56ccf3b107f7f063f3ae36d269aa44d30
Author: Albert Astals Cid <aacid at kde.org>
Date:   Fri Sep 11 14:34:04 2015 +0200

    Call parent ::event()
    
    ::event() implementations need to call the parent ::event() otherwise things like deleteLater which is implemented in QObject::event won't work
    In this case it probably doesn't matter, but it's always good to have "good code"
    
    REVIEW: 125146
---
 lib/chat-search-bar.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/chat-search-bar.cpp b/lib/chat-search-bar.cpp
index f0a559f..484975a 100644
--- a/lib/chat-search-bar.cpp
+++ b/lib/chat-search-bar.cpp
@@ -166,7 +166,7 @@ bool ChatSearchBar::event(QEvent *e)
             return true;
         }
     }
-    return false;
+    return QWidget::event(e);
 }
 
 void ChatSearchBar::textChanged(const QString& text)

-- 
ktp-text-ui packaging



More information about the pkg-kde-commits mailing list