Hello community,

here is the log from the commit of package ktextwidgets for openSUSE:Factory 
checked in at 2015-03-16 09:30:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ktextwidgets (Old)
 and      /work/SRC/openSUSE:Factory/.ktextwidgets.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ktextwidgets"

Changes:
--------
--- /work/SRC/openSUSE:Factory/ktextwidgets/ktextwidgets.changes        
2015-02-16 17:32:33.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.ktextwidgets.new/ktextwidgets.changes   
2015-03-16 09:30:15.000000000 +0100
@@ -1,0 +2,7 @@
+Sat Mar  7 16:58:43 UTC 2015 - [email protected]
+
+- Update to 5.8.0
+  * For more details please see:
+    https://www.kde.org/announcements/kde-frameworks-5.8.0.php
+
+-------------------------------------------------------------------

Old:
----
  ktextwidgets-5.7.0.tar.xz

New:
----
  ktextwidgets-5.8.0.tar.xz

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

Other differences:
------------------
++++++ ktextwidgets.spec ++++++
--- /var/tmp/diff_new_pack.mCOqCR/_old  2015-03-16 09:30:16.000000000 +0100
+++ /var/tmp/diff_new_pack.mCOqCR/_new  2015-03-16 09:30:16.000000000 +0100
@@ -17,13 +17,13 @@
 
 
 %define lname   libKF5TextWidgets5
-%define _tar_path 5.7
+%define _tar_path 5.8
 Name:           ktextwidgets
 Version:        %{_tar_path}.0
 Release:        0
 %define kf5_version %{version}
 BuildRequires:  cmake >= 2.8.12
-BuildRequires:  extra-cmake-modules >= 1.7.0
+BuildRequires:  extra-cmake-modules >= 1.8.0
 BuildRequires:  fdupes
 BuildRequires:  kcompletion-devel >= %{kf5_version}
 BuildRequires:  kconfig-devel >= %{kf5_version}

++++++ ktextwidgets-5.7.0.tar.xz -> ktextwidgets-5.8.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.7.0/CMakeLists.txt 
new/ktextwidgets-5.8.0/CMakeLists.txt
--- old/ktextwidgets-5.7.0/CMakeLists.txt       2015-02-08 16:25:31.000000000 
+0100
+++ new/ktextwidgets-5.8.0/CMakeLists.txt       2015-03-07 15:50:55.000000000 
+0100
@@ -3,7 +3,7 @@
 project(KTextWidgets)
 
 # ECM setup
-find_package(ECM 1.7.0 REQUIRED NO_MODULE)
+find_package(ECM 1.8.0 REQUIRED NO_MODULE)
 set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
 
 include(KDEInstallDirs)
@@ -15,8 +15,8 @@
 include(ECMGenerateHeaders)
 include(ECMPackageConfigHelpers)
 
-set(KF5_VERSION "5.7.0") # handled by release scripts
-set(KF5_DEP_VERSION "5.7.0") # handled by release scripts
+set(KF5_VERSION "5.8.0") # handled by release scripts
+set(KF5_DEP_VERSION "5.8.0") # handled by release scripts
 
 ecm_setup_version(${KF5_VERSION}
                   VARIABLE_PREFIX KTEXTWIDGETS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.7.0/src/findreplace/kfinddialog.h 
new/ktextwidgets-5.8.0/src/findreplace/kfinddialog.h
--- old/ktextwidgets-5.7.0/src/findreplace/kfinddialog.h        2015-02-08 
16:25:31.000000000 +0100
+++ new/ktextwidgets-5.8.0/src/findreplace/kfinddialog.h        2015-03-07 
15:50:55.000000000 +0100
@@ -212,7 +212,7 @@
     void cancelClicked();
 
 protected:
-    virtual void showEvent(QShowEvent *) Q_DECL_OVERRIDE;
+    void showEvent(QShowEvent *) Q_DECL_OVERRIDE;
 
 private:
     friend class KReplaceDialog;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.7.0/src/findreplace/kreplace.h 
new/ktextwidgets-5.8.0/src/findreplace/kreplace.h
--- old/ktextwidgets-5.7.0/src/findreplace/kreplace.h   2015-02-08 
16:25:31.000000000 +0100
+++ new/ktextwidgets-5.8.0/src/findreplace/kreplace.h   2015-03-07 
15:50:55.000000000 +0100
@@ -129,7 +129,7 @@
      * Can be useful if reusing the same KReplace for different operations,
      * or when restarting from the beginning of the document.
      */
-    virtual void resetCounts() Q_DECL_OVERRIDE;
+    void resetCounts() Q_DECL_OVERRIDE;
 
     /**
      * Walk the text fragment (e.g. kwrite line, kspread cell) looking for 
matches.
@@ -188,13 +188,13 @@
      * and we could even be hitting the beginning of the document (so not all
      * matches have even been seen).
      */
-    virtual bool shouldRestart(bool forceAsking = false, bool showNumMatches = 
true) const;
+    bool shouldRestart(bool forceAsking = false, bool showNumMatches = true) 
const Q_DECL_OVERRIDE;
 
     /**
      * Displays the final dialog telling the user how many replacements were 
made.
      * Call either this or shouldRestart().
      */
-    virtual void displayFinalDialog() const;
+    void displayFinalDialog() const Q_DECL_OVERRIDE;
 
 Q_SIGNALS:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.7.0/src/findreplace/kreplacedialog.h 
new/ktextwidgets-5.8.0/src/findreplace/kreplacedialog.h
--- old/ktextwidgets-5.7.0/src/findreplace/kreplacedialog.h     2015-02-08 
16:25:31.000000000 +0100
+++ new/ktextwidgets-5.8.0/src/findreplace/kreplacedialog.h     2015-03-07 
15:50:55.000000000 +0100
@@ -134,7 +134,7 @@
     QWidget *replaceExtension() const;
 
 protected:
-    virtual void showEvent(QShowEvent *);
+    void showEvent(QShowEvent *) Q_DECL_OVERRIDE;
 
 private:
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.7.0/src/widgets/krichtextedit.h 
new/ktextwidgets-5.8.0/src/widgets/krichtextedit.h
--- old/ktextwidgets-5.7.0/src/widgets/krichtextedit.h  2015-02-08 
16:25:31.000000000 +0100
+++ new/ktextwidgets-5.8.0/src/widgets/krichtextedit.h  2015-03-07 
15:50:55.000000000 +0100
@@ -367,7 +367,7 @@
      * Reimplemented.
      * Catches key press events. Used to handle some key presses on lists.
      */
-    virtual void keyPressEvent(QKeyEvent *event) Q_DECL_OVERRIDE;
+    void keyPressEvent(QKeyEvent *event) Q_DECL_OVERRIDE;
 
 private:
     //@cond PRIVATE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.7.0/src/widgets/krichtextwidget.h 
new/ktextwidgets-5.8.0/src/widgets/krichtextwidget.h
--- old/ktextwidgets-5.7.0/src/widgets/krichtextwidget.h        2015-02-08 
16:25:31.000000000 +0100
+++ new/ktextwidgets-5.8.0/src/widgets/krichtextwidget.h        2015-03-07 
15:50:55.000000000 +0100
@@ -339,7 +339,7 @@
      * Reimplemented.
      * Catches mouse release events. Used to know when a selection has been 
completed.
      */
-    virtual void mouseReleaseEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
+    void mouseReleaseEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
 
 private:
     //@cond PRIVATE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.7.0/src/widgets/ktextedit.cpp 
new/ktextwidgets-5.8.0/src/widgets/ktextedit.cpp
--- old/ktextwidgets-5.7.0/src/widgets/ktextedit.cpp    2015-02-08 
16:25:31.000000000 +0100
+++ new/ktextwidgets-5.8.0/src/widgets/ktextedit.cpp    2015-03-07 
15:50:55.000000000 +0100
@@ -57,7 +57,7 @@
 {
 public:
     KTextDecorator(KTextEdit *textEdit);
-    virtual bool isSpellCheckingEnabledForBlock(const QString &textBlock) 
const;
+    bool isSpellCheckingEnabledForBlock(const QString &textBlock) const 
Q_DECL_OVERRIDE;
 private:
     KTextEdit *m_textEdit;
 };
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ktextwidgets-5.7.0/src/widgets/ktextedit.h 
new/ktextwidgets-5.8.0/src/widgets/ktextedit.h
--- old/ktextwidgets-5.7.0/src/widgets/ktextedit.h      2015-02-08 
16:25:31.000000000 +0100
+++ new/ktextwidgets-5.8.0/src/widgets/ktextedit.h      2015-03-07 
15:50:55.000000000 +0100
@@ -332,18 +332,18 @@
     /**
      * Reimplemented to catch "delete word" shortcut events.
      */
-    virtual bool event(QEvent *) Q_DECL_OVERRIDE;
+    bool event(QEvent *) Q_DECL_OVERRIDE;
 
     /**
      * Reimplemented for internal reasons
      */
-    virtual void keyPressEvent(QKeyEvent *) Q_DECL_OVERRIDE;
+    void keyPressEvent(QKeyEvent *) Q_DECL_OVERRIDE;
 
     /**
      * Reimplemented to instantiate a KDictSpellingHighlighter, if
      * spellchecking is enabled.
      */
-    virtual void focusInEvent(QFocusEvent *) Q_DECL_OVERRIDE;
+    void focusInEvent(QFocusEvent *) Q_DECL_OVERRIDE;
 
     /**
      * Deletes a word backwards from the current cursor position,
@@ -361,7 +361,7 @@
      * Reimplemented from QTextEdit to add spelling related items
      * when appropriate.
      */
-    virtual void contextMenuEvent(QContextMenuEvent *) Q_DECL_OVERRIDE;
+    void contextMenuEvent(QContextMenuEvent *) Q_DECL_OVERRIDE;
 
 private:
     class Private;

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to