Hello community,

here is the log from the commit of package kdebase3 for openSUSE:Factory 
checked in at 2014-10-25 08:33:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kdebase3 (Old)
 and      /work/SRC/openSUSE:Factory/.kdebase3.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kdebase3"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kdebase3/kdebase3.changes        2014-10-19 
19:29:22.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kdebase3.new/kdebase3.changes   2014-10-25 
11:12:11.000000000 +0200
@@ -1,0 +2,10 @@
+Fri Oct 24 07:30:26 UTC 2014 - an...@opensuse.org
+
+- Add more processes to watch in ksysguard process management
+  (kdebase-trinity-add-more-processes-to-watch.diff)
+- Fix potential segmentation fault in kcontrol info module
+  (kdebase-trinity-fix-potential-kcontrol-segfault.diff)
+- Clear modified field on media device unmount
+  (kdebse-trinity-clear-modified-field.diff)
+
+-------------------------------------------------------------------

New:
----
  kdebase-trinity-add-more-processes-to-watch.diff
  kdebase-trinity-fix-potential-kcontrol-segfault.diff
  kdebse-trinity-clear-modified-field.diff

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

Other differences:
------------------
++++++ kdebase3.spec ++++++
--- /var/tmp/diff_new_pack.95q1Mr/_old  2014-10-25 11:12:14.000000000 +0200
+++ /var/tmp/diff_new_pack.95q1Mr/_new  2014-10-25 11:12:14.000000000 +0200
@@ -307,6 +307,9 @@
 Patch286:       kioslave-fix-memcpy.patch
 Patch287:       kdebase3-trinity-fix-mouse-module-crash.diff
 Patch288:       kdebase3-openbsd-add-per-functions.diff
+Patch289:       kdebse-trinity-clear-modified-field.diff
+Patch290:       kdebase-trinity-fix-potential-kcontrol-segfault.diff
+Patch291:       kdebase-trinity-add-more-processes-to-watch.diff
 
 %description
 This package contains kdebase, one of the basic packages of the K
@@ -682,6 +685,9 @@
 %patch286 -p1
 %patch287 -p1
 %patch288 -p1
+%patch289 -p1
+%patch290 -p1
+%patch291 -p1
 %if %suse_version>1310
 sed -i 's|SSLv2_client_method|SSLv3_client_method|g' kcontrol/crypto/crypto.cpp
 %endif




++++++ kdebase-trinity-add-more-processes-to-watch.diff ++++++
commit f19d2da92e25435457866b0c026f6d17905464ae
Author: François Andriot <francois.andr...@free.fr>
Date:   1413137776 +0200

    Add more processes to watch in ksysguard process management

diff --git a/ksysguard/gui/SensorDisplayLib/ProcessList.cc 
b/ksysguard/gui/SensorDisplayLib/ProcessList.cc
index 3fc77d5..bf371fd 100644
--- a/ksysguard/gui/SensorDisplayLib/ProcessList.cc
+++ b/ksysguard/gui/SensorDisplayLib/ProcessList.cc
@@ -174,6 +174,12 @@ ProcessList::ProcessList(QWidget *parent, const char* name)
                aliases.insert("wwwoffled", new QString("daemon"));
                aliases.insert("xntpd", new QString("daemon"));
                aliases.insert("ypbind", new QString("daemon"));
+               aliases.insert("apmd", new QString("daemon"));
+               aliases.insert("getty", new QString("daemon"));
+               aliases.insert("mountd", new QString("daemon"));
+               aliases.insert("inetd", new QString("daemon"));
+               aliases.insert("nfsd", new QString("daemon"));
+               aliases.insert("wsmoused", new QString("daemon"));
                /* kde applications */
                aliases.insert("appletproxy", new QString("kdeapp"));
                aliases.insert("dcopserver", new QString("kdeapp"));
@@ -210,6 +216,7 @@ ProcessList::ProcessList(QWidget *parent, const char* name)
                aliases.insert("tcsh", new QString("shell"));
                aliases.insert("tee", new QString("tools"));
                aliases.insert("vi", new QString("wordprocessing"));
+               aliases.insert("vim", new QString("wordprocessing"));
        }
 
        /* The filter mode is controlled by a combo box of the parent. If
++++++ kdebase-trinity-fix-potential-kcontrol-segfault.diff ++++++
commit 180cd2fc18a958f0297fdcc2697cf6d500e69a3f
Author: François Andriot <francois.andr...@free.fr>
Date:   1413137032 +0200

    Fix potential segmentation fault in kcontrol info module

diff --git a/kcontrol/info/info_openbsd.cpp b/kcontrol/info/info_openbsd.cpp
index 12ec8ee..7b484da 100644
--- a/kcontrol/info/info_openbsd.cpp
+++ b/kcontrol/info/info_openbsd.cpp
@@ -235,7 +235,7 @@ bool GetInfo_Sound (QListView *lbox)
                if ((pos = s.find("at ")) >= 0) {
                        pos += 3;       // skip "at "
                        start = end = s.ascii();
-                       for(; (*end!=':') && (*end!='\n'); end++);
+                       for(; *end && (*end!=':') && (*end!='\n'); end++);
                        len = end - start;
                        dev = (char *) malloc(len + 1);
                        strncpy(dev, start, len);
++++++ kdebse-trinity-clear-modified-field.diff ++++++
commit 8b103159ba942855d6d861ddc8caf529ca099c64
Author: Timothy Pearson <kb9...@pearsoncomputing.net>
Date:   1397809682 +0000

    Clear modified field on media device unmount (and other cases where the 
modified date is no longer valid)
    This resolves the remainder of Bug 1666

diff --git a/konqueror/listview/konq_listviewitems.cc 
b/konqueror/listview/konq_listviewitems.cc
index 0358fbd..e9a14a8 100644
--- a/konqueror/listview/konq_listviewitems.cc
+++ b/konqueror/listview/konq_listviewitems.cc
@@ -135,7 +135,11 @@ void KonqListViewItem::updateContents()
                if ( _time != 0 )
                {
                    dt.setTime_t( _time );
-                   
setText(tmpColumn->displayInColumn,KGlobal::locale()->formatDateTime(dt));
+                   setText(tmpColumn->displayInColumn, 
KGlobal::locale()->formatDateTime(dt));
+               }
+               else
+               {
+                   setText(tmpColumn->displayInColumn, QString::null);
                }
             }
             break;


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to