Hello community,

here is the log from the commit of package ktp-text-ui for openSUSE:Factory 
checked in at 2016-03-26 15:18:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ktp-text-ui (Old)
 and      /work/SRC/openSUSE:Factory/.ktp-text-ui.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ktp-text-ui"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ktp-text-ui/ktp-text-ui.changes  2016-02-22 
10:19:07.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.ktp-text-ui.new/ktp-text-ui.changes     
2016-03-26 15:18:36.000000000 +0100
@@ -1,0 +2,9 @@
+Sun Mar 13 15:53:08 UTC 2016 - tittiatc...@gmail.com
+
+- Update to KDE Applications 15.12.3
+   * KDE Applications 15.12.3 
+   * https://www.kde.org/announcements/announce-applications-15.12.3.php
+   * boo#970855
+
+
+-------------------------------------------------------------------

Old:
----
  ktp-text-ui-15.12.2.tar.xz

New:
----
  ktp-text-ui-15.12.3.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ktp-text-ui.spec ++++++
--- /var/tmp/diff_new_pack.aOX97H/_old  2016-03-26 15:18:37.000000000 +0100
+++ /var/tmp/diff_new_pack.aOX97H/_new  2016-03-26 15:18:37.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           ktp-text-ui
-Version:        15.12.2
+Version:        15.12.3
 Release:        0
 Summary:        Telepathy chat handler for KDE
 License:        GPL-2.0+

++++++ ktp-text-ui-15.12.2.tar.xz -> ktp-text-ui-15.12.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-text-ui-15.12.2/CMakeLists.txt 
new/ktp-text-ui-15.12.3/CMakeLists.txt
--- old/ktp-text-ui-15.12.2/CMakeLists.txt      2016-02-12 06:27:51.000000000 
+0100
+++ new/ktp-text-ui-15.12.3/CMakeLists.txt      2016-03-10 00:26:15.000000000 
+0100
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set(KDE_APPLICATIONS_VERSION_MAJOR "15")
 set(KDE_APPLICATIONS_VERSION_MINOR "12")
-set(KDE_APPLICATIONS_VERSION_MICRO "2")
+set(KDE_APPLICATIONS_VERSION_MICRO "3")
 set(KTP_TEXT_UI_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 set(KTP_MESSAGE_FILTER_FRAMEWORK_VERSION "5")
 set(IS_KTP_INTERNAL_MODULE TRUE)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-text-ui-15.12.2/logviewer/log-viewer.cpp 
new/ktp-text-ui-15.12.3/logviewer/log-viewer.cpp
--- old/ktp-text-ui-15.12.2/logviewer/log-viewer.cpp    2016-02-12 
06:27:51.000000000 +0100
+++ new/ktp-text-ui-15.12.3/logviewer/log-viewer.cpp    2016-03-10 
00:26:15.000000000 +0100
@@ -114,8 +114,8 @@
     connect(ui->datesView, SIGNAL(clicked(QModelIndex)), 
SLOT(slotDateClicked(QModelIndex)));
     connect(ui->datesView->selectionModel(), 
SIGNAL(currentChanged(QModelIndex,QModelIndex)), SLOT(slotUpdateMainWindow()));
     connect(ui->messageView, SIGNAL(conversationSwitchRequested(QDate)), 
SLOT(slotSetConversationDate(QDate)));
-    connect(ui->globalSearch, SIGNAL(returnPressed(QString)), 
SLOT(slotStartGlobalSearch(QString)));
-    connect(ui->globalSearch, SIGNAL(clearButtonClicked()), 
SLOT(slotClearGlobalSearch()));
+    connect(ui->globalSearch, SIGNAL(returnPressed()), 
SLOT(slotStartGlobalSearch()));
+    connect(ui->globalSearch, &QLineEdit::textChanged, [this](const QString 
&text) { if (text.isEmpty()) { slotClearGlobalSearch(); } });
     connect(ui->entityList, SIGNAL(customContextMenuRequested(QPoint)), 
SLOT(slotShowEntityListContextMenu(QPoint)));
     connect(ui->entityList, SIGNAL(noSuchContact()), 
SLOT(slotNoLogsForContact()));
 }
@@ -302,8 +302,9 @@
     }
 }
 
-void LogViewer::slotStartGlobalSearch(const QString &term)
+void LogViewer::slotStartGlobalSearch()
 {
+    const QString &term = ui->globalSearch->text();
     if (term.isEmpty()) {
         ui->messageView->clearHighlightText();
         m_filterModel->clearSearchHits();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktp-text-ui-15.12.2/logviewer/log-viewer.h 
new/ktp-text-ui-15.12.3/logviewer/log-viewer.h
--- old/ktp-text-ui-15.12.2/logviewer/log-viewer.h      2016-02-12 
06:27:51.000000000 +0100
+++ new/ktp-text-ui-15.12.3/logviewer/log-viewer.h      2016-03-10 
00:26:15.000000000 +0100
@@ -66,7 +66,7 @@
 
     void slotShowEntityListContextMenu(const QPoint &coords);
     void slotClearGlobalSearch();
-    void slotStartGlobalSearch(const QString &term);
+    void slotStartGlobalSearch();
     void onGlobalSearchFinished(KTp::PendingLoggerOperation *);
 
     void slotClearContactHistory();


Reply via email to