Hello community,

here is the log from the commit of package dolphin for openSUSE:Factory checked 
in at 2016-11-12 13:28:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/dolphin (Old)
 and      /work/SRC/openSUSE:Factory/.dolphin.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "dolphin"

Changes:
--------
--- /work/SRC/openSUSE:Factory/dolphin/dolphin.changes  2016-11-10 
13:58:26.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.dolphin.new/dolphin.changes     2016-11-12 
13:28:57.000000000 +0100
@@ -1,0 +2,7 @@
+Wed Nov  9 06:09:26 UTC 2016 - lbeltr...@kde.org
+
+- Update to KDE Applications 16.08.3
+  * KDE Applications 16.08.3
+  * https://www.kde.org/announcements/announce-applications-16.08.3.php
+
+-------------------------------------------------------------------

Old:
----
  dolphin-16.08.2.tar.xz

New:
----
  dolphin-16.08.3.tar.xz

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

Other differences:
------------------
++++++ dolphin.spec ++++++
--- /var/tmp/diff_new_pack.D76gGb/_old  2016-11-12 13:28:58.000000000 +0100
+++ /var/tmp/diff_new_pack.D76gGb/_new  2016-11-12 13:28:58.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           dolphin
-Version:        16.08.2
+Version:        16.08.3
 Release:        0
 Summary:        KDE File Manager
 License:        GPL-2.0+

++++++ dolphin-16.08.2.tar.xz -> dolphin-16.08.3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dolphin-16.08.2/CMakeLists.txt 
new/dolphin-16.08.3/CMakeLists.txt
--- old/dolphin-16.08.2/CMakeLists.txt  2016-10-10 14:24:39.000000000 +0200
+++ new/dolphin-16.08.3/CMakeLists.txt  2016-11-07 00:11:59.000000000 +0100
@@ -5,7 +5,7 @@
 # KDE Application Version, managed by release script
 set (KDE_APPLICATIONS_VERSION_MAJOR "16")
 set (KDE_APPLICATIONS_VERSION_MINOR "08")
-set (KDE_APPLICATIONS_VERSION_MICRO "2")
+set (KDE_APPLICATIONS_VERSION_MICRO "3")
 set (KDE_APPLICATIONS_VERSION 
"${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATIONS_VERSION_MINOR}.${KDE_APPLICATIONS_VERSION_MICRO}")
 
 set(QT_MIN_VERSION "5.4.0")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-16.08.2/src/panels/places/placesitemeditdialog.cpp 
new/dolphin-16.08.3/src/panels/places/placesitemeditdialog.cpp
--- old/dolphin-16.08.2/src/panels/places/placesitemeditdialog.cpp      
2016-10-10 14:24:39.000000000 +0200
+++ new/dolphin-16.08.3/src/panels/places/placesitemeditdialog.cpp      
2016-11-07 00:11:59.000000000 +0100
@@ -47,7 +47,8 @@
     m_urlEdit(0),
     m_textEdit(0),
     m_iconButton(0),
-    m_appLocal(0)
+    m_appLocal(0),
+    m_buttonBox(nullptr)
 {
 }
 
@@ -106,7 +107,7 @@
 
 void PlacesItemEditDialog::slotUrlChanged(const QString& text)
 {
-    m_okButton->setEnabled(!text.isEmpty());
+    m_buttonBox->button(QDialogButtonBox::Ok)->setEnabled(!text.isEmpty());
 }
 
 PlacesItemEditDialog::~PlacesItemEditDialog()
@@ -115,20 +116,16 @@
 
 void PlacesItemEditDialog::initialize()
 {
-    QDialogButtonBox *buttonBox = new 
QDialogButtonBox(QDialogButtonBox::Ok|QDialogButtonBox::Cancel);
-    m_okButton = buttonBox->button(QDialogButtonBox::Ok);
-    m_okButton->setDefault(true);
-    m_okButton->setShortcut(Qt::CTRL | Qt::Key_Return);
-    connect(buttonBox, &QDialogButtonBox::accepted, this, 
&PlacesItemEditDialog::accept);
-    connect(buttonBox, &QDialogButtonBox::rejected, this, 
&PlacesItemEditDialog::reject);
+    m_buttonBox = new 
QDialogButtonBox(QDialogButtonBox::Ok|QDialogButtonBox::Cancel, this);
+    connect(m_buttonBox, &QDialogButtonBox::accepted, this, 
&PlacesItemEditDialog::accept);
+    connect(m_buttonBox, &QDialogButtonBox::rejected, this, 
&PlacesItemEditDialog::reject);
     setModal(true);
-    m_okButton->setDefault(true);
 
     QVBoxLayout *mainLayout = new QVBoxLayout;
     setLayout(mainLayout);
     QWidget* mainWidget = new QWidget(this);
     mainLayout->addWidget(mainWidget);
-    mainLayout->addWidget(buttonBox);
+    mainLayout->addWidget(m_buttonBox);
 
     QVBoxLayout* vBox = new QVBoxLayout(mainWidget);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/dolphin-16.08.2/src/panels/places/placesitemeditdialog.h 
new/dolphin-16.08.3/src/panels/places/placesitemeditdialog.h
--- old/dolphin-16.08.2/src/panels/places/placesitemeditdialog.h        
2016-10-10 14:24:39.000000000 +0200
+++ new/dolphin-16.08.3/src/panels/places/placesitemeditdialog.h        
2016-11-07 00:11:59.000000000 +0100
@@ -31,7 +31,7 @@
 class KUrlRequester;
 class QLineEdit;
 class QCheckBox;
-class QPushButton;
+class QDialogButtonBox;
 
 class PlacesItemEditDialog: public QDialog
 {
@@ -72,7 +72,7 @@
     QLineEdit* m_textEdit;
     KIconButton* m_iconButton;
     QCheckBox* m_appLocal;
-    QPushButton *m_okButton;
+    QDialogButtonBox *m_buttonBox;
 };
 
 #endif


Reply via email to