Hello community,

here is the log from the commit of package sonnet for openSUSE:Factory checked 
in at 2017-08-24 18:00:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/sonnet (Old)
 and      /work/SRC/openSUSE:Factory/.sonnet.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "sonnet"

Thu Aug 24 18:00:13 2017 rev:46 rq:516713 version:5.37.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/sonnet/sonnet.changes    2017-07-17 
10:27:01.754602866 +0200
+++ /work/SRC/openSUSE:Factory/.sonnet.new/sonnet.changes       2017-08-24 
18:00:17.637704134 +0200
@@ -1,0 +2,12 @@
+Sat Aug 12 09:23:44 UTC 2017 - [email protected]
+
+- Update to 5.37.0
+  * New feature release
+  * For more details please see:
+  * https://www.kde.org/announcements/kde-frameworks-5.37.0.php
+- Changes since 5.36.0 :
+  * Allow to build Sonnet without Qt5Widgets
+  * cmake: rewrite FindHUNSPELL.cmake to use pkg-config
+  * Use more nullptr
+
+-------------------------------------------------------------------

Old:
----
  sonnet-5.36.0.tar.xz

New:
----
  sonnet-5.37.0.tar.xz

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

Other differences:
------------------
++++++ sonnet.spec ++++++
--- /var/tmp/diff_new_pack.NxyUp6/_old  2017-08-24 18:00:19.497442191 +0200
+++ /var/tmp/diff_new_pack.NxyUp6/_new  2017-08-24 18:00:19.505441065 +0200
@@ -18,9 +18,9 @@
 
 %bcond_without lang
 %define sonum   5
-%define _tar_path 5.36
+%define _tar_path 5.37
 Name:           sonnet
-Version:        5.36.0
+Version:        5.37.0
 Release:        0
 #BuildRequires:  aspell-devel
 BuildRequires:  cmake >= 3.0

++++++ sonnet-5.36.0.tar.xz -> sonnet-5.37.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/.arcconfig new/sonnet-5.37.0/.arcconfig
--- old/sonnet-5.36.0/.arcconfig        1970-01-01 01:00:00.000000000 +0100
+++ new/sonnet-5.37.0/.arcconfig        2017-08-06 20:15:00.000000000 +0200
@@ -0,0 +1,3 @@
+{
+  "phabricator.uri" : "https://phabricator.kde.org/";
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/CMakeLists.txt 
new/sonnet-5.37.0/CMakeLists.txt
--- old/sonnet-5.36.0/CMakeLists.txt    2017-07-02 10:15:30.000000000 +0200
+++ new/sonnet-5.37.0/CMakeLists.txt    2017-08-06 20:15:00.000000000 +0200
@@ -1,11 +1,11 @@
 
 cmake_minimum_required(VERSION 3.0)
 
-set(KF5_VERSION "5.36.0") # handled by release scripts
+set(KF5_VERSION "5.37.0") # handled by release scripts
 project(Sonnet VERSION ${KF5_VERSION})
 
 include(FeatureSummary)
-find_package(ECM 5.36.0  NO_MODULE)
+find_package(ECM 5.37.0  NO_MODULE)
 set_package_properties(ECM PROPERTIES TYPE REQUIRED DESCRIPTION "Extra CMake 
Modules." URL 
"https://projects.kde.org/projects/kdesupport/extra-cmake-modules";)
 feature_summary(WHAT REQUIRED_PACKAGES_NOT_FOUND 
FATAL_ON_MISSING_REQUIRED_PACKAGES)
 
@@ -16,8 +16,12 @@
 include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE)
 include(KDECMakeSettings)
 
-set(REQUIRED_QT_VERSION 5.6.0)
-find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets)
+set(REQUIRED_QT_VERSION 5.7.0)
+option(SONNET_USE_WIDGETS "Build components using Qt5Widgets" ON)
+if(SONNET_USE_WIDGETS)
+    find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Widgets)
+endif()
+find_package(Qt5 ${REQUIRED_QT_VERSION} CONFIG REQUIRED Core)
 
 
 include(GenerateExportHeader)
@@ -43,7 +47,9 @@
 add_subdirectory(src)
 add_subdirectory(autotests)
 add_subdirectory(data)
-add_subdirectory(examples)
+if(TARGET Qt5::Widgets)
+    add_subdirectory(examples)
+endif()
 
 
 # create a Config.cmake and a ConfigVersion.cmake file and install them
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/cmake/FindHUNSPELL.cmake 
new/sonnet-5.37.0/cmake/FindHUNSPELL.cmake
--- old/sonnet-5.36.0/cmake/FindHUNSPELL.cmake  2017-07-02 10:15:30.000000000 
+0200
+++ new/sonnet-5.37.0/cmake/FindHUNSPELL.cmake  2017-08-06 20:15:00.000000000 
+0200
@@ -2,24 +2,52 @@
 # Once done this will define
 #
 #  HUNSPELL_FOUND - system has HUNSPELL
-#  HUNSPELL_INCLUDE_DIR - the HUNSPELL include directory
+#  HUNSPELL_INCLUDE_DIRS - the HUNSPELL include directory
 #  HUNSPELL_LIBRARIES - The libraries needed to use HUNSPELL
-#  HUNSPELL_DEFINITIONS - Compiler switches required for using HUNSPELL
-
-
-IF (HUNSPELL_INCLUDE_DIR AND HUNSPELL_LIBRARIES)
-  # Already in cache, be silent
-  SET(HUNSPELL_FIND_QUIETLY TRUE)
-ENDIF (HUNSPELL_INCLUDE_DIR AND HUNSPELL_LIBRARIES)
-
-FIND_PATH(HUNSPELL_INCLUDE_DIR hunspell/hunspell.hxx )
-
-FIND_LIBRARY(HUNSPELL_LIBRARIES NAMES hunspell hunspell-1.6 hunspell-1.5 
hunspell-1.4 hunspell-1.3 hunspell-1.2)
-
-# handle the QUIETLY and REQUIRED arguments and set HUNSPELL_FOUND to TRUE if 
-# all listed variables are TRUE
-INCLUDE(FindPackageHandleStandardArgs)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(HUNSPELL DEFAULT_MSG HUNSPELL_LIBRARIES 
HUNSPELL_INCLUDE_DIR)
 
+# Copyright (c) 2017, Pino Toscano <[email protected]>
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+#    notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+#    notice, this list of conditions and the following disclaimer in the
+#    documentation and/or other materials provided with the distribution.
+# 3. Neither the name of the University nor the names of its contributors
+#    may be used to endorse or promote products derived from this software
+#    without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+# SUCH DAMAGE.
+
+find_package(PkgConfig)
+pkg_check_modules(PKG_HUNSPELL QUIET hunspell)
+
+find_path(HUNSPELL_INCLUDE_DIRS
+          NAMES hunspell.hxx
+          PATH_SUFFIXES hunspell
+          HINTS ${PKG_HUNSPELL_INCLUDE_DIRS}
+)
+find_library(HUNSPELL_LIBRARIES
+             NAMES ${PKG_HUNSPELL_LIBRARIES} hunspell hunspell-1.6 
hunspell-1.5 hunspell-1.4 hunspell-1.3 hunspell-1.2
+             HINTS ${PKG_HUNSPELL_LIBRARY_DIRS}
+)
+
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(HUNSPELL
+                                  REQUIRED_VARS HUNSPELL_LIBRARIES 
HUNSPELL_INCLUDE_DIRS
+                                  VERSION_VAR PKG_HUNSPELL_VERSION
+)
 
-MARK_AS_ADVANCED(HUNSPELL_INCLUDE_DIR HUNSPELL_LIBRARIES)
+mark_as_advanced(HUNSPELL_INCLUDE_DIRS HUNSPELL_LIBRARIES)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/po/eu/sonnet5_qt.po 
new/sonnet-5.37.0/po/eu/sonnet5_qt.po
--- old/sonnet-5.36.0/po/eu/sonnet5_qt.po       2017-07-02 10:15:30.000000000 
+0200
+++ new/sonnet-5.37.0/po/eu/sonnet5_qt.po       2017-08-06 20:15:00.000000000 
+0200
@@ -6,155 +6,104 @@
 # Ion Gaztañaga <[email protected]>, 2005.
 # marcos <[email protected]>, 2006, 2007, 2008, 2009, 2010.
 # Iñaki Larrañaga Murgoitio <[email protected]>, 2009.
-# Iñigo Salvador Azurmendi <[email protected]>, 2010, 2011, 2012, 2013, 2014.
+# Iñigo Salvador Azurmendi <[email protected]>, 2010, 2011, 2012, 2013, 
2014, 2017.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-03-23 01:50+0000\n"
-"PO-Revision-Date: 2014-03-02 19:49+0100\n"
+"PO-Revision-Date: 2017-07-20 20:45+0100\n"
 "Last-Translator: Iñigo Salvador Azurmendi <[email protected]>\n"
 "Language-Team: Basque <[email protected]>\n"
 "Language: eu\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 1.5\n"
+"X-Generator: Lokalize 2.0\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Qt-Contexts: true\n"
 
 #: core/loader.cpp:173
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "40"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "40"
 msgstr "40"
 
 #: core/loader.cpp:174
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "60"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "60"
 msgstr "60"
 
 #: core/loader.cpp:175
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "80"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "80"
 msgstr "80"
 
 #: core/loader.cpp:176
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "-ise suffixes"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ise suffixes"
 msgstr "-ise atzizkiak"
 
 #: core/loader.cpp:177
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "-ize suffixes"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ize suffixes"
 msgstr "-ize atzizkiak"
 
 #: core/loader.cpp:178
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "-ise suffixes and with accents"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ise suffixes and with accents"
-msgstr "-ise atzizkiak azentuekin"
+msgstr "-ise atzizkiak eta azentuekin"
 
 #: core/loader.cpp:179
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "-ise suffixes and without accents"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ise suffixes and without accents"
 msgstr "-ise atzizkiak azenturik gabe"
 
 #: core/loader.cpp:180
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "-ize suffixes and with accents"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ize suffixes and with accents"
-msgstr "-ize atzizkiak azentuekin"
+msgstr "-ize atzizkiak eta azentuekin"
 
 #: core/loader.cpp:181
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "-ize suffixes and without accents"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "-ize suffixes and without accents"
-msgstr "-ize atzizkiak azenturik gabe"
+msgstr "-ize atzizkiak eta azenturik gabe"
 
 #: core/loader.cpp:182
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "large"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "large"
 msgstr "handia"
 
 #: core/loader.cpp:183
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "medium"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "medium"
 msgstr "ertaina"
 
 #: core/loader.cpp:184
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "small"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "small"
 msgstr "txikia"
 
 #: core/loader.cpp:185
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "variant 0"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "variant 0"
-msgstr "aldaketa 0"
+msgstr "0 aldaera"
 
 #: core/loader.cpp:186
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "variant 1"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "variant 1"
-msgstr "aldaketa 1"
+msgstr "1 aldaera"
 
 #: core/loader.cpp:187
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "variant 2"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "variant 2"
-msgstr "aldaketa 2"
+msgstr "2 aldaera"
 
 #: core/loader.cpp:188
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "without accents"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "without accents"
 msgstr "azenturik gabe"
 
 #: core/loader.cpp:189
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "with accents"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "with accents"
 msgstr "azentuekin"
@@ -162,30 +111,25 @@
 #: core/loader.cpp:190
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "with ye, modern russian"
-msgstr ""
+msgstr "ye-duna, errusiera modernoa"
 
 #: core/loader.cpp:191
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "with yeyo, modern and old russian"
-msgstr ""
+msgstr "yeyo-duna, errusiera moderno eta antzinakoa"
 
 #: core/loader.cpp:192
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "with yo, old russian"
-msgstr ""
+msgstr "yo-duna, antzinako errusiera"
 
 #: core/loader.cpp:193
-#, fuzzy
-#| msgctxt "dictionary variant"
-#| msgid "extended"
 msgctxt "Sonnet::Loader|dictionary variant"
 msgid "extended"
 msgstr "hedatua"
 
 #: core/loader.cpp:227
-#, fuzzy, qt-format
-#| msgctxt "dictionary name. %1-language, %2-country and %3 variant name"
-#| msgid "%1 (%2) [%3]"
+#, qt-format
 msgctxt ""
 "Sonnet::Loader|dictionary name; %1 = language name, %2 = country name and %3 "
 "= language variant name"
@@ -193,23 +137,17 @@
 msgstr "%1 (%2) [%3]"
 
 #: core/loader.cpp:230
-#, fuzzy, qt-format
-#| msgctxt "name of digit set with digit string, e.g. 'Arabic (0123456789)'"
-#| msgid "%1 (%2)"
+#, qt-format
 msgctxt "Sonnet::Loader|dictionary name; %1 = language name, %2 = country name"
 msgid "%1 (%2)"
 msgstr "%1 (%2)"
 
 #: ui/configdialog.cpp:50
-#, fuzzy
-#| msgid "Spell Checking Configuration"
 msgctxt "Sonnet::ConfigDialog|"
 msgid "Spell Checking Configuration"
-msgstr "Ortografia azterketaren konfigurazioa"
+msgstr "Ortografia-egiaztatzeko konfigurazioa"
 
 #: ui/configui.ui:41
-#, fuzzy
-#| msgid "Options"
 msgctxt "SonnetConfigUI|"
 msgid "Options"
 msgstr "Aukerak"
@@ -217,145 +155,96 @@
 #: ui/configui.ui:47
 msgctxt "SonnetConfigUI|"
 msgid "Enable autodetection of &language"
-msgstr ""
+msgstr "Gaitu &hizkuntza detekzio automatikoa"
 
 #: ui/configui.ui:54
-#, fuzzy
-#| msgid "Enable &background spellchecking"
 msgctxt "SonnetConfigUI|"
 msgid "Enable &background spellchecking"
-msgstr "Gaitu &hondoko ortografia zuzenketa"
+msgstr "Gaitu &hondoko ortografia-egiaztatzea"
 
 #: ui/configui.ui:61
-#, fuzzy
-#| msgid "&Automatic spell checking enabled by default"
 msgctxt "SonnetConfigUI|"
 msgid "&Automatic spell checking enabled by default"
-msgstr "Ida&zten duzun bitartean sintaxia egiaztatzea lehenetsiz gaituta"
+msgstr "Ortografia-egiaztatze &automatikoa gaituta modu lehenetsian"
 
 #: ui/configui.ui:68
-#, fuzzy
-#| msgid "Skip all &uppercase words"
 msgctxt "SonnetConfigUI|"
 msgid "Skip all &uppercase words"
-msgstr "Baztertu MAIUSKULAZ idatzitako hitzak"
+msgstr "Baztertu mai&uskulaz idatzitako hitzak"
 
 #: ui/configui.ui:75
-#, fuzzy
-#| msgid "S&kip run-together words"
 msgctxt "SonnetConfigUI|"
 msgid "S&kip run-together words"
-msgstr "Baztertu elkar-idatzitako hitzak"
+msgstr "Baztertu elkartutako hitzak"
 
 #: ui/configui.ui:85
-#, fuzzy
-#| msgid "Default language:"
 msgctxt "SonnetConfigUI|"
 msgid "Default language:"
 msgstr "Hizkuntza lehenetsia:"
 
 #: ui/configui.ui:95
-#, fuzzy
-#| msgid "Ignored Words"
 msgctxt "SonnetConfigUI|"
 msgid "Ignored Words:"
-msgstr "Baztertutako hitzak"
+msgstr "Baztertutako hitzak:"
 
 #: ui/configui.ui:109
-#, fuzzy
-#| msgid "&Add"
 msgctxt "SonnetConfigUI|"
 msgid "&Add"
 msgstr "&Gehitu"
 
 #: ui/configui.ui:122
-#, fuzzy
-#| msgid "&Remove"
 msgctxt "SonnetConfigUI|"
 msgid "&Remove"
 msgstr "&Kendu"
 
 #: ui/configui.ui:160
-#, fuzzy
-#| msgid "Enable &background spellchecking"
 msgctxt "SonnetConfigUI|"
 msgid "No backend found for spell checking"
-msgstr "Gaitu &hondoko ortografia zuzenketa"
+msgstr "Ortografia-egiaztatzerako atzealdekorik ez"
 
 #: ui/dialog.cpp:100 ui/dialog.cpp:224 ui/dialog.cpp:433
-#, fuzzy
-#| msgid "Check Spelling"
 msgctxt "Sonnet::Dialog|@title:window"
 msgid "Check Spelling"
 msgstr "Egiaztatu ortografia"
 
 #: ui/dialog.cpp:223
-#, fuzzy
-#| msgctxt "progress label"
-#| msgid "Spell checking in progress..."
 msgctxt "Sonnet::Dialog|progress label"
 msgid "Spell checking in progress..."
-msgstr "Ortografia egiaztatzea martxan da..."
+msgstr "Ortografia-egiaztatzea martxan da..."
 
 #: ui/dialog.cpp:244
-#, fuzzy
-#| msgid "Spell check stopped."
 msgctxt "Sonnet::Dialog|"
 msgid "Spell check stopped."
-msgstr "Ortografia egiaztatzea gelditu da."
+msgstr "Ortografia-egiaztatzea gelditu da."
 
 #: ui/dialog.cpp:254
-#, fuzzy
-#| msgid "Spell check canceled."
 msgctxt "Sonnet::Dialog|"
 msgid "Spell check canceled."
-msgstr "Ortografia egiaztatzea bertan behera utzi da."
+msgstr "Ortografia-egiaztatzea utzi da."
 
 #: ui/dialog.cpp:430 ui/dialog.cpp:433
-#, fuzzy
-#| msgid "Spell check complete."
 msgctxt "Sonnet::Dialog|"
 msgid "Spell check complete."
-msgstr "Ortografia egiaztatzea burutu da."
+msgstr "Ortografia-egiaztatzea burutu da."
 
 #: ui/highlighter.cpp:229 ui/highlighter.cpp:251
-#, fuzzy
-#| msgid "As-you-type spell checking enabled."
 msgctxt "Sonnet::Highlighter|"
 msgid "As-you-type spell checking enabled."
-msgstr "Idazten duzun bitartean sintaxia egiaztatzea gaitu da."
+msgstr "Idatzi ahala ortografia-egiaztatzea gaituta."
 
 #: ui/highlighter.cpp:232
-#, fuzzy
-#| msgid "Too many misspelled words. As-you-type spell checking disabled."
 msgctxt "Sonnet::Highlighter|"
 msgid "Too many misspelled words. As-you-type spell checking disabled."
 msgstr ""
-"Gaizki idatzitako hitz gehiegi. Idazten duzun bitartean sintaxia egiaztatzea "
-"desgaitu da."
+"Gaizki idatzitako hitz gehiegi. Idatzi ahala ortografia-egiaztatzea "
+"desgaituta."
 
 #: ui/highlighter.cpp:253
-#, fuzzy
-#| msgid "As-you-type spell checking disabled."
 msgctxt "Sonnet::Highlighter|"
 msgid "As-you-type spell checking disabled."
-msgstr "Idazten duzun bitartean sintaxia egiaztatzea desgaitu da."
+msgstr "Idatzi ahala ortografia-egiaztatzea desgaituta. "
 
 #: ui/sonnetui.ui:41 ui/sonnetui.ui:57
-#, fuzzy
-#| msgid ""
-#| "<qt><p>This word was considered to be an \"unknown word\" because it does "
-#| "not match any entry in the dictionary currently in use. It may also be a "
-#| "word in a foreign language.</p>\n"
-#| "<p>If the word is not misspelled, you may add it to the dictionary by "
-#| "clicking <b>Add to Dictionary</b>. If you do not want to add the unknown "
-#| "word to the dictionary, but you want to leave it unchanged, click "
-#| "<b>Ignore</b> or <b>Ignore All</b>.</p>\n"
-#| "<p>However, if the word is misspelled, you can try to find the correct "
-#| "replacement in the list below. If you cannot find a replacement there, "
-#| "you may type it in the text box below, and click <b>Replace</b> or "
-#| "<b>Replace All</b>.</p>\n"
-#| "</qt>"
 msgctxt "SonnetUi|"
 msgid ""
 "<qt><p>This word was considered to be an \"unknown word\" because it does "
@@ -372,44 +261,33 @@
 "</qt>"
 msgstr ""
 "<qt><p>Hitz hau \"hitz ezezaguna\" bezala kontsideratu da, uneko hiztegian "
-"hitzari buruzko sarrerarik ez dagoelako. Atzerriko hizkuntzako hitz bat izan "
-"daiteke. </p>\n"
-"<p>Hitza gaizki idatzita ez badago, hiztegian gehi dezakezu <b>Gehitu "
-"hiztegian</b> erabiliz. Hitz ezezaguna hiztegian gehitu nahi ez baduzu baina "
-"aldaketarik gabe utzi nahi baduzu, egin klik <b>Ez ikusi egin</b> edo <b> Ez "
-"ikusi egin guztiei</b>.</p>\n"
+"hitzari buruzko sarrerarik ez dagoelako. Baliteke atzerriko hizkuntza bateko "
+"hitza izatea. </p>\n"
+"<p>Hitza gaizki idatzita ez badago, hiztegira gehi dezakezu <b>Gehitu "
+"hiztegira</b> erabiliz. Hitz ezezaguna hiztegira gehitu nahi ez baduzu baina "
+"dagoenean utzi nahi baduzu, egin klik <b>Ez ikusi egin</b> edo <b> Ez ikusi "
+"egin guztiei</b>.</p>\n"
 "<p>Hala ere, hitza gaizki idatzita badago, ordezko hitza bila dezakezu "
 "beheko zerrendan. Ordezkorik aurkitu ezin baduzu, beheko testu-koadroan "
 "idatzi eta egin klik <b>Ordeztu</b> edo <b>Ordeztu guztiak</b>.</p>\n"
 "</qt>"
 
 #: ui/sonnetui.ui:47
-#, fuzzy
-#| msgid "Unknown word:"
 msgctxt "SonnetUi|"
 msgid "Unknown word:"
 msgstr "Hitz ezezaguna:"
 
 #: ui/sonnetui.ui:54
-#, fuzzy
-#| msgid "Unknown word"
 msgctxt "SonnetUi|"
 msgid "Unknown word"
 msgstr "Hitz ezezaguna"
 
 #: ui/sonnetui.ui:63
-#, fuzzy
-#| msgid "<b>misspelled</b>"
 msgctxt "SonnetUi|"
 msgid "<b>misspelled</b>"
 msgstr "<b>gaizki idatzia</b>"
 
 #: ui/sonnetui.ui:70 ui/sonnetui.ui:180
-#, fuzzy
-#| msgid ""
-#| "<qt>\n"
-#| "<p>Select the language of the document you are proofing here.</p>\n"
-#| "</qt>"
 msgctxt "SonnetUi|"
 msgid ""
 "<qt>\n"
@@ -417,33 +295,20 @@
 "</qt>"
 msgstr ""
 "<qt>\n"
-"<p>Hautatu hizkuntza (gainbegiratzen ari zaren dokumentuarena).</p>\n"
+"<p>Hautatu zuzentzen ari zaren dokumentuaren hizkuntza.</p>\n"
 "</qt>"
 
 #: ui/sonnetui.ui:75
-#, fuzzy
-#| msgid "&Language:"
 msgctxt "SonnetUi|"
 msgid "&Language:"
 msgstr "&Hizkuntza:"
 
 #: ui/sonnetui.ui:85
-#, fuzzy
-#| msgid "Text excerpt showing the unknown word in its context."
 msgctxt "SonnetUi|"
 msgid "Text excerpt showing the unknown word in its context."
-msgstr "Testu zatia, testuinguruan hitz ezezaguna erakusten duena."
+msgstr "Hitz ezezaguna bere testuinguruan erakusten duten testua zatia."
 
 #: ui/sonnetui.ui:88
-#, fuzzy
-#| msgid ""
-#| "<qt>\n"
-#| "<p>Here you can see a text excerpt showing the unknown word in its "
-#| "context. If this information is not sufficient to choose the best "
-#| "replacement for the unknown word, you can click on the document you are "
-#| "proofing, read a larger part of the text and then return here to continue "
-#| "proofing.</p>\n"
-#| "</qt>"
 msgctxt "SonnetUi|"
 msgid ""
 "<qt>\n"
@@ -454,30 +319,18 @@
 "</qt>"
 msgstr ""
 "<qt>\n"
-"<p>Hitz ezezaguna erakusten duen testu zatia ikus dezakezu bere "
-"testuinguruan. Informazioa nahikoa ez bada hitz ezezaguna ordezteko, egin "
-"klik gainbegiratzen ari zaren dokumentuan, irakurri testu zati handiagoa eta "
-"itzuli hona berriro gainbegiratzen jarraitzeko.</p>\n"
+"<p>Hemen ikusi dezakezu hitz ezezaguna bere testuinguruan erakusten duten "
+"testu zati bat. Informazio hau ez bada nahikoa hitz ezezagunaren ordezko "
+"onena hautatzeko, zuzentzen ari zaren testuan klik egin dezakezu, testuaren "
+"zati luzeagoa irakurri eta hona itzuli zuzentzen jarraitzeko.</p>\n"
 "</qt>"
 
 #: ui/sonnetui.ui:96
-#, fuzzy
-#| msgid "... the <b>misspelled</b> word shown in context ..."
 msgctxt "SonnetUi|"
 msgid "... the <b>misspelled</b> word shown in context ..."
-msgstr "... testuinguruan erakutsi den <b>gaizki idatzitako</b> hitza..."
+msgstr "... <b>gaizki idatzitako</b> hitza testuinguruan erakutsita ..."
 
 #: ui/sonnetui.ui:106
-#, fuzzy
-#| msgid ""
-#| "<qt>\n"
-#| "<p>The unknown word was detected and considered unknown because it is not "
-#| "included in the dictionary.<br>\n"
-#| "Click here if you consider the unknown word not to be misspelled, and you "
-#| "want to avoid wrongly detecting it again in the future. If you want to "
-#| "let it remain as is, but not add it to the dictionary, then click "
-#| "<b>Ignore</b> or <b>Ignore All</b> instead.</p>\n"
-#| "</qt>"
 msgctxt "SonnetUi|"
 msgid ""
 "<qt>\n"
@@ -490,39 +343,25 @@
 "</qt>"
 msgstr ""
 "<qt>\n"
-"<p>Hitz ezezaguna detektatu da, hiztegian ez baitago.<br>\n"
-"Egin klik hemen hitz ezezaguna ongi idatzita dagoela pentsatzen baduzu eta "
-"etorkizunean berriro ezezagun gisa ez detektatzeko. Honela utzi nahi baduzu, "
-"hiztegian sartu gabe, klikatu <b>Ez ikusi egin</b> edo <b>Ez ikusi egin "
-"guztiei</b>.</p>\n"
+"<p>Hitz ezezaguna hauteman da, ezezaguntzat hartu da hiztegian ez dagoelako."
+"<br>\n"
+"Egin klik hemen hitz ezezaguna zuzen idatzita dagoela uste baduzu, "
+"etaetorkizunean berriz ezezagun gisa hautematea ekiditeko. Dagoenean utzi "
+"nahi baduzu, baino hiztegira gehitzerik ez baduzu nahi, klik egin <b>Ez "
+"ikusi egin</b> edo <b>Ez ikusi egin guztiei</b>.</p>\n"
 "</qt>"
 
 #: ui/sonnetui.ui:112
-#, fuzzy
-#| msgid "<< Add to Dictionary"
 msgctxt "SonnetUi|"
 msgid "<< Add to Dictionary"
-msgstr "<< Gehitu hiztegian"
+msgstr "<< Gehitu hiztegira"
 
 #: ui/sonnetui.ui:135
-#, fuzzy
-#| msgid "Suggestion List"
 msgctxt "SonnetUi|"
 msgid "Suggestion List"
 msgstr "Iradokizunen zerrenda"
 
 #: ui/sonnetui.ui:138
-#, fuzzy
-#| msgid ""
-#| "<qt>\n"
-#| "<p>If the unknown word is misspelled, you should check if the correction "
-#| "for it is available and if it is, click on it. If none of the words in "
-#| "this list is a good replacement you may type the correct word in the edit "
-#| "box above.</p>\n"
-#| "<p>To correct this word click <b>Replace</b> if you want to correct only "
-#| "this occurrence or <b>Replace All</b> if you want to correct all "
-#| "occurrences.</p>\n"
-#| "</qt>"
 msgctxt "SonnetUi|"
 msgid ""
 "<qt>\n"
@@ -536,24 +375,16 @@
 "</qt>"
 msgstr ""
 "<qt>\n"
-"<p>Hitz ezezaguna gaizki idatzita badago egiaztatu zuzenketa eskuragarri "
-"dagoen, eta egin klik zuzenketan (agertzen bada). Zerrendan ordezko egokirik "
-"ez balego idatzi hitz egokia gaineko edizio-koadroan.</p>\n"
+"<p>Hitz ezezaguna gaizki idatzita badago, harentzako zuzenketa erabilgarri "
+"dagoen egiaztatu behar zenuke, eta hala bada, bere gainean klik egin. "
+"Zerrenda honetako hitz bat ere ordezko egokia ez bada, hitz zuzena tekleatu "
+"dezakezu gaineko editatzeko koadroan.</p>\n"
 "<p>Hitz hau zuzentzeko egin klik <b>Ordeztu</b>n agerpen hau bakarrik "
 "zuzendu nahi baduzu edo <b>Ordeztu guztiak</b> agerpen guztiak zuzendu nahi "
-"badituzu.</p>\n"
+"badituzu. </p>\n"
 "</qt>"
 
 #: ui/sonnetui.ui:151 ui/sonnetui.ui:167
-#, fuzzy
-#| msgid ""
-#| "<qt>\n"
-#| "<p>If the unknown word is misspelled, you should type the correction for "
-#| "your misspelled word here or select it from the list below.</p>\n"
-#| "<p>You can then click <b>Replace</b> if you want to correct only this "
-#| "occurrence of the word or <b>Replace All</b> if you want to correct all "
-#| "occurrences.</p>\n"
-#| "</qt>"
 msgctxt "SonnetUi|"
 msgid ""
 "<qt>\n"
@@ -565,40 +396,29 @@
 "</qt>"
 msgstr ""
 "<qt>\n"
-"<p>Hitz ezezaguna gaizki idatzi bada hitzaren zuzenketa beheko zerrendatik "
-"hautatu, edo laukian sartu, beharko zenuke.</p>\n"
-"<p>Egin klik <b>Ordeztu</b>ren gainean gertaera hau bakarrik zuzentzeko, edo "
-"<b>Ordeztu denak</b> gertaera guztiak zuzendu nahi badituzu.</p>\n"
+"<p>Hitz ezezaguna gaizki idatzi bada, harentzako zuzenketa hemen tekleatu "
+"beharko zenuke edo azpiko zerrendatik hautatu.</p>\n"
+"<p>Ondoren <b>Ordeztu</b>n klik egin dezakezu agerpen hau bakarrik "
+"zuzentzeko, edo <b>Ordeztu denak</b> agerpen guztiak zuzendu nahi badituzu.</"
+"p>\n"
 "</qt>"
 
 #: ui/sonnetui.ui:157
-#, fuzzy
-#| msgid "Replace &with:"
 msgctxt "SonnetUi|"
 msgid "Replace &with:"
 msgstr "Ordeztu &honekin:"
 
 #: ui/sonnetui.ui:177
-#, fuzzy
-#| msgid "Language Selection"
 msgctxt "SonnetUi|"
 msgid "Language Selection"
-msgstr "Hizkuntzaren hautapena"
+msgstr "Hizkuntza hautapena"
 
 #: ui/sonnetui.ui:206
-#, fuzzy
-#| msgid "S&uggest"
 msgctxt "SonnetUi|"
 msgid "S&uggest"
 msgstr "I&radokizuna"
 
 #: ui/sonnetui.ui:213
-#, fuzzy
-#| msgid ""
-#| "<qt>\n"
-#| "<p>Click here to replace this occurrence of the unknown text with the "
-#| "text in the edit box above (to the left).</p>\n"
-#| "</qt>"
 msgctxt "SonnetUi|"
 msgid ""
 "<qt>\n"
@@ -607,24 +427,16 @@
 "</qt>"
 msgstr ""
 "<qt>\n"
-"<p>Egin klik testu ezezagunaren gertaera goiko edizio-laukiko testuarekin "
-"ordezteko.</p>\n"
+"<p>Egin klik hemen testu ezezagunaren agerpen hau, gaineko (ezkerrera), "
+"editatzeko koadroko testuarekin ordezteko.</p>\n"
 "</qt>"
 
 #: ui/sonnetui.ui:218
-#, fuzzy
-#| msgid "&Replace"
 msgctxt "SonnetUi|"
 msgid "&Replace"
 msgstr "O&rdeztu"
 
 #: ui/sonnetui.ui:225
-#, fuzzy
-#| msgid ""
-#| "<qt>\n"
-#| "<p>Click here to replace all occurrences of the unknown text with the "
-#| "text in the edit box above (to the left).</p>\n"
-#| "</qt>"
 msgctxt "SonnetUi|"
 msgid ""
 "<qt>\n"
@@ -633,27 +445,16 @@
 "</qt>"
 msgstr ""
 "<qt>\n"
-"<p>Egin klik testu ezezagunaren gertaera guztiak goiko ezkerreko edizio-"
-"koadroko testuarekin ordezteko.</p>\n"
+"<p>Egin klik hemen testu ezezagunaren agerpen guztiak, gaineko (ezkerrera) "
+"editatzeko koadroko testuarekin ordezteko.</p>\n"
 "</qt>"
 
 #: ui/sonnetui.ui:230
-#, fuzzy
-#| msgid "R&eplace All"
 msgctxt "SonnetUi|"
 msgid "R&eplace All"
-msgstr "Ordeztu d&enak"
+msgstr "Ordeztu &guztiak"
 
 #: ui/sonnetui.ui:237
-#, fuzzy
-#| msgid ""
-#| "<qt>\n"
-#| "<p>Click here to let this occurrence of the unknown word remain as is.</"
-#| "p>\n"
-#| "<p>This action is useful when the word is a name, an acronym, a foreign "
-#| "word or any other unknown word that you want to use but not add to the "
-#| "dictionary.</p>\n"
-#| "</qt>"
 msgctxt "SonnetUi|"
 msgid ""
 "<qt>\n"
@@ -664,28 +465,18 @@
 "</qt>"
 msgstr ""
 "<qt>\n"
-"<p>Egin klik hitz ezezagunaren gertaera hau dagoen bezala uzteko.</p>\n"
-"<p>Ekintza hau erabilgarria da hitza, izen, atzerriko hitz, edo beste hitz "
-"ezezagun bat denean, baina hiztegira gehitu nahi ez duzunean.</p>\n"
+"<p>Egin klik hitz ezezagunaren agerpen hau dagoen bezala uzteko.</p>\n"
+"<p>Ekintza hau erabilgarria da hitza, izena, akronimoa, atzerriko hitza, edo "
+"beste edozein hitz ezezaguna izanik erabili nahi duzunean baino hiztegira "
+"gehitu ez.</p>\n"
 "</qt>"
 
 #: ui/sonnetui.ui:243
-#, fuzzy
-#| msgid "&Ignore"
 msgctxt "SonnetUi|"
 msgid "&Ignore"
 msgstr "&Ez ikusi egin"
 
 #: ui/sonnetui.ui:250 ui/sonnetui.ui:263
-#, fuzzy
-#| msgid ""
-#| "<qt>\n"
-#| "<p>Click here to let all occurrences of the unknown word remain as they "
-#| "are.</p>\n"
-#| "<p>This action is useful when the word is a name, an acronym, a foreign "
-#| "word or any other unknown word that you want to use but not add to the "
-#| "dictionary.</p>\n"
-#| "</qt>"
 msgctxt "SonnetUi|"
 msgid ""
 "<qt>\n"
@@ -697,43 +488,35 @@
 "</qt>"
 msgstr ""
 "<qt>\n"
-"<p>Egin klik hitz ezezagunaren gertaera guztiak dauden bezala uzteko.</p>\n"
-"<p>Ekintza hau erabilgarria da hitza, izen, atzerriko hitz, edo beste hitz "
-"ezezagun bat denean bat denean, baina hiztegira gehitu nahi ez duzunean.</"
+"<p>Egin klik hemen hitz ezezagunaren agerpen guztiak dauden bezala uzteko.</"
 "p>\n"
+"<p>Ekintza hau erabilgarria da hitza, izena, akronimoa, atzerriko hitza, edo "
+"beste edozein hitz ezezaguna izanik erabili nahi duzunean baino hiztegira "
+"gehitu ez.</p>\n"
 "</qt>"
 
 #: ui/sonnetui.ui:256
-#, fuzzy
-#| msgid "I&gnore All"
 msgctxt "SonnetUi|"
 msgid "I&gnore All"
-msgstr "Ez ikusi egin &guztiei"
+msgstr "Ez ikusi e&gin denei"
 
 #: ui/sonnetui.ui:269
-#, fuzzy
-#| msgid "Autocorrect"
 msgctxt "SonnetUi|"
 msgid "Autocorrect"
-msgstr "Auto-zuzendu"
+msgstr "Zuzeketa automatikoa"
 
 #: ui/spellcheckdecorator.cpp:176
-#, fuzzy, qt-format
-#| msgid "No suggestions for %1"
+#, qt-format
 msgctxt "Sonnet::SpellCheckDecorator|"
 msgid "No suggestions for %1"
 msgstr "Iradokizunik ez %1(e)ntzako"
 
 #: ui/spellcheckdecorator.cpp:187
-#, fuzzy
-#| msgid "Ignore"
 msgctxt "Sonnet::SpellCheckDecorator|"
 msgid "Ignore"
 msgstr "Ez ikusi egin"
 
 #: ui/spellcheckdecorator.cpp:188
-#, fuzzy
-#| msgid "Add to Dictionary"
 msgctxt "Sonnet::SpellCheckDecorator|"
 msgid "Add to Dictionary"
-msgstr "Gehitu hiztegian"
+msgstr "Gehitu hiztegira"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/po/gl/sonnet5_qt.po 
new/sonnet-5.37.0/po/gl/sonnet5_qt.po
--- old/sonnet-5.36.0/po/gl/sonnet5_qt.po       2017-07-02 10:15:30.000000000 
+0200
+++ new/sonnet-5.37.0/po/gl/sonnet5_qt.po       2017-08-06 20:15:00.000000000 
+0200
@@ -10,14 +10,14 @@
 # Xosé <[email protected]>, 2010.
 # Marce Villarino <[email protected]>, 2011, 2012, 2013, 2014.
 # Adrián Chaves Fernández (Gallaecio) <[email protected]>, 2015, 2017.
+# Adrián Chaves (Gallaecio) <[email protected]>, 2017.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdelibs4\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
 "POT-Creation-Date: 2014-03-23 01:50+0000\n"
-"PO-Revision-Date: 2017-01-29 14:03+0100\n"
-"Last-Translator: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail."
-"com>\n"
+"PO-Revision-Date: 2017-07-26 08:57+0100\n"
+"Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n"
 "Language-Team: Galician <[email protected]>\n"
 "Language: gl\n"
 "MIME-Version: 1.0\n"
@@ -172,7 +172,7 @@
 #: ui/configui.ui:61
 msgctxt "SonnetConfigUI|"
 msgid "&Automatic spell checking enabled by default"
-msgstr "Activar por omisión a corrección ortográfica &automática"
+msgstr "Activar de maneira predeterminada a corrección ortográfica &automática"
 
 #: ui/configui.ui:68
 msgctxt "SonnetConfigUI|"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/po/zh_CN/sonnet5_qt.po 
new/sonnet-5.37.0/po/zh_CN/sonnet5_qt.po
--- old/sonnet-5.36.0/po/zh_CN/sonnet5_qt.po    2017-07-02 10:15:30.000000000 
+0200
+++ new/sonnet-5.37.0/po/zh_CN/sonnet5_qt.po    2017-08-06 20:15:00.000000000 
+0200
@@ -1,31 +1,20 @@
-# translation of kdelibs4.po to Chinese Simplified
-# Copyright (C) 2007 Free Software Foundation, Inc.
-#
-# Lie Ex <[email protected]> 2007-2011.
-# Wang Jian <[email protected]>, 1998.
-# Sarah Smith <[email protected]>, 2002.
-# Xiong Jiang <[email protected]>, 2002,2003,2004.
-# Funda Wang <[email protected]>, 2002,2003,2004.
-# Liang Qi <[email protected]>, 2007.
-# Feng Chao <[email protected]>, 2010, 2012, 2014.
-# Ni Hui <[email protected]>, 2010, 2011, 2012.
-# Weng Xuetian <[email protected]>, 2011, 2012, 2013, 2014, 2016.
-# Xuetian Weng <[email protected]>, 2014.
 msgid ""
 msgstr ""
-"Project-Id-Version: kdelibs4\n"
+"Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: http://bugs.kde.org\n";
-"POT-Creation-Date: 2014-03-23 01:50+0000\n"
-"PO-Revision-Date: 2016-01-18 22:01-0800\n"
-"Last-Translator: Weng Xuetian <[email protected]>\n"
-"Language-Team: Chinese <[email protected]>\n"
+"POT-Creation-Date: 2016-11-19 20:11+0100\n"
+"PO-Revision-Date: 2017-07-13 11:17-0400\n"
+"Last-Translator: guoyunhebrave <[email protected]>\n"
+"Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Lokalize 2.0\n"
-"X-Qt-Contexts: true\n"
+"X-Generator: crowdin.com\n"
+"X-Crowdin-Project: kdeorg\n"
+"X-Crowdin-Language: zh-CN\n"
+"X-Crowdin-File: /kf5-trunk/messages/frameworks/baloo_file5.pot\n"
 
 #: core/loader.cpp:173
 msgctxt "Sonnet::Loader|dictionary variant"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/src/CMakeLists.txt 
new/sonnet-5.37.0/src/CMakeLists.txt
--- old/sonnet-5.36.0/src/CMakeLists.txt        2017-07-02 10:15:30.000000000 
+0200
+++ new/sonnet-5.37.0/src/CMakeLists.txt        2017-08-06 20:15:00.000000000 
+0200
@@ -1,3 +1,5 @@
 add_subdirectory(core)
 add_subdirectory(plugins)
-add_subdirectory(ui)
+if(TARGET Qt5::Widgets)
+    add_subdirectory(ui)
+endif()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/src/core/loader.cpp 
new/sonnet-5.37.0/src/core/loader.cpp
--- old/sonnet-5.36.0/src/core/loader.cpp       2017-07-02 10:15:30.000000000 
+0200
+++ new/sonnet-5.37.0/src/core/loader.cpp       2017-08-06 20:15:00.000000000 
+0200
@@ -300,7 +300,7 @@
         return;
     }
 #else
-    Client *client = 0;
+    Client *client = nullptr;
     if (pluginPath == QLatin1String("Hunspell"))
         client = new HunspellClient(this);
 #ifdef Q_OS_MAC
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/src/plugins/aspell/aspellclient.cpp 
new/sonnet-5.37.0/src/plugins/aspell/aspellclient.cpp
--- old/sonnet-5.36.0/src/plugins/aspell/aspellclient.cpp       2017-07-02 
10:15:30.000000000 +0200
+++ new/sonnet-5.37.0/src/plugins/aspell/aspellclient.cpp       2017-08-06 
20:15:00.000000000 +0200
@@ -65,7 +65,7 @@
     AspellDictInfoEnumeration *el = aspell_dict_info_list_elements(l);
 
     QStringList langs;
-    const AspellDictInfo *di = 0;
+    const AspellDictInfo *di = nullptr;
     while ((di = aspell_dict_info_enumeration_next(el))) {
         langs.append(QString::fromLatin1(di->name));
     }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/src/plugins/aspell/aspellclient.h 
new/sonnet-5.37.0/src/plugins/aspell/aspellclient.h
--- old/sonnet-5.36.0/src/plugins/aspell/aspellclient.h 2017-07-02 
10:15:30.000000000 +0200
+++ new/sonnet-5.37.0/src/plugins/aspell/aspellclient.h 2017-08-06 
20:15:00.000000000 +0200
@@ -38,7 +38,7 @@
     Q_PLUGIN_METADATA(IID "org.kde.Sonnet.ASpellClient")
 
 public:
-    explicit ASpellClient(QObject *parent = 0);
+    explicit ASpellClient(QObject *parent = nullptr);
     ~ASpellClient();
 
     int reliability() const Q_DECL_OVERRIDE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/src/plugins/enchant/enchantclient.h 
new/sonnet-5.37.0/src/plugins/enchant/enchantclient.h
--- old/sonnet-5.36.0/src/plugins/enchant/enchantclient.h       2017-07-02 
10:15:30.000000000 +0200
+++ new/sonnet-5.37.0/src/plugins/enchant/enchantclient.h       2017-08-06 
20:15:00.000000000 +0200
@@ -38,7 +38,7 @@
     Q_INTERFACES(Sonnet::Client)
     Q_PLUGIN_METADATA(IID "org.kde.Sonnet.EnchantClient")
 public:
-    explicit QSpellEnchantClient(QObject *parent = 0);
+    explicit QSpellEnchantClient(QObject *parent = nullptr);
     ~QSpellEnchantClient();
 
     virtual int reliability() const
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/src/plugins/hunspell/CMakeLists.txt 
new/sonnet-5.37.0/src/plugins/hunspell/CMakeLists.txt
--- old/sonnet-5.36.0/src/plugins/hunspell/CMakeLists.txt       2017-07-02 
10:15:30.000000000 +0200
+++ new/sonnet-5.37.0/src/plugins/hunspell/CMakeLists.txt       2017-08-06 
20:15:00.000000000 +0200
@@ -7,7 +7,7 @@
 add_definitions(-DHUNSPELL_MAIN_DICT_PATH="/usr/share/myspell")
 endif (EXISTS "/usr/share/hunspell/")
 
-include_directories( ${HUNSPELL_INCLUDE_DIR} )
+include_directories( ${HUNSPELL_INCLUDE_DIRS} )
 set(sonnet_hunspell_PART_SRCS
     hunspellclient.cpp
     hunspelldict.cpp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/src/plugins/hunspell/hunspellclient.h 
new/sonnet-5.37.0/src/plugins/hunspell/hunspellclient.h
--- old/sonnet-5.36.0/src/plugins/hunspell/hunspellclient.h     2017-07-02 
10:15:30.000000000 +0200
+++ new/sonnet-5.37.0/src/plugins/hunspell/hunspellclient.h     2017-08-06 
20:15:00.000000000 +0200
@@ -36,7 +36,7 @@
     Q_INTERFACES(Sonnet::Client)
     Q_PLUGIN_METADATA(IID "org.kde.Sonnet.HunspellClient")
 public:
-    explicit HunspellClient(QObject *parent = 0);
+    explicit HunspellClient(QObject *parent = nullptr);
     ~HunspellClient();
 
     int reliability() const Q_DECL_OVERRIDE
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sonnet-5.36.0/src/plugins/hunspell/hunspelldict.h 
new/sonnet-5.37.0/src/plugins/hunspell/hunspelldict.h
--- old/sonnet-5.36.0/src/plugins/hunspell/hunspelldict.h       2017-07-02 
10:15:30.000000000 +0200
+++ new/sonnet-5.37.0/src/plugins/hunspell/hunspelldict.h       2017-08-06 
20:15:00.000000000 +0200
@@ -22,7 +22,7 @@
 #define KSPELL_HUNSPELLDICT_H
 
 #include "spellerplugin_p.h"
-#include "hunspell/hunspell.hxx"
+#include "hunspell.hxx"
 
 #ifndef HUNSPELL_MAIN_DICT_PATH
 #ifdef Q_OS_MAC
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sonnet-5.36.0/src/plugins/nsspellchecker/nsspellcheckerclient.h 
new/sonnet-5.37.0/src/plugins/nsspellchecker/nsspellcheckerclient.h
--- old/sonnet-5.36.0/src/plugins/nsspellchecker/nsspellcheckerclient.h 
2017-07-02 10:15:30.000000000 +0200
+++ new/sonnet-5.37.0/src/plugins/nsspellchecker/nsspellcheckerclient.h 
2017-08-06 20:15:00.000000000 +0200
@@ -35,7 +35,7 @@
     Q_INTERFACES(Sonnet::Client)
     Q_PLUGIN_METADATA(IID "org.kde.Sonnet.NSSpellClient")
 public:
-    explicit NSSpellCheckerClient(QObject *parent = 0);
+    explicit NSSpellCheckerClient(QObject *parent = nullptr);
     ~NSSpellCheckerClient();
 
     int reliability() const


Reply via email to