Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libkcddb for openSUSE:Factory 
checked in at 2022-08-19 17:52:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libkcddb (Old)
 and      /work/SRC/openSUSE:Factory/.libkcddb.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libkcddb"

Fri Aug 19 17:52:29 2022 rev:71 rq:997928 version:22.08.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/libkcddb/libkcddb.changes        2022-07-09 
17:01:44.676680204 +0200
+++ /work/SRC/openSUSE:Factory/.libkcddb.new.2083/libkcddb.changes      
2022-08-19 17:53:12.283688689 +0200
@@ -1,0 +2,20 @@
+Sun Aug 14 09:43:43 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 22.08.0
+  * New feature release
+  * For more details please see:
+  * https://kde.org/announcements/gear/22.08.0/
+
+-------------------------------------------------------------------
+Fri Aug  5 12:11:33 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 22.07.90
+  * New feature release
+
+-------------------------------------------------------------------
+Sat Jul 16 08:28:49 UTC 2022 - Christophe Giboudeaux <christo...@krop.fr>
+
+- Update to 22.07.80
+  * New feature release
+
+-------------------------------------------------------------------

Old:
----
  libkcddb-22.04.3.tar.xz
  libkcddb-22.04.3.tar.xz.sig

New:
----
  libkcddb-22.08.0.tar.xz
  libkcddb-22.08.0.tar.xz.sig

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

Other differences:
------------------
++++++ libkcddb.spec ++++++
--- /var/tmp/diff_new_pack.jub7YB/_old  2022-08-19 17:53:13.343690911 +0200
+++ /var/tmp/diff_new_pack.jub7YB/_new  2022-08-19 17:53:13.347690919 +0200
@@ -20,7 +20,7 @@
 %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print 
$1"."$2}')}
 %bcond_without released
 Name:           libkcddb
-Version:        22.04.3
+Version:        22.08.0
 Release:        0
 Summary:        CDDB library for KDE Applications
 License:        GPL-2.0-or-later


++++++ libkcddb-22.04.3.tar.xz -> libkcddb-22.08.0.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.04.3/.gitignore 
new/libkcddb-22.08.0/.gitignore
--- old/libkcddb-22.04.3/.gitignore     2022-05-26 00:00:26.000000000 +0200
+++ new/libkcddb-22.08.0/.gitignore     2022-07-13 14:28:30.000000000 +0200
@@ -1 +1,3 @@
 .clang-format
+/build*
+CMakeLists.txt.user
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.04.3/CMakeLists.txt 
new/libkcddb-22.08.0/CMakeLists.txt
--- old/libkcddb-22.04.3/CMakeLists.txt 2022-05-26 00:00:26.000000000 +0200
+++ new/libkcddb-22.08.0/CMakeLists.txt 2022-07-13 14:28:30.000000000 +0200
@@ -3,7 +3,7 @@
 project(libkcddb VERSION "5.1.0")
 
 set(QT_MIN_VERSION 5.15.0)
-set(KF_MIN_VERSION 5.89.0)
+set(KF_MIN_VERSION 5.90.0)
 
 # ECM setup
 include(FeatureSummary)
@@ -25,7 +25,9 @@
 
 find_package(Qt${QT_MAJOR_VERSION} ${QT_MIN_VERSION} REQUIRED COMPONENTS 
Network Widgets)
 find_package(KF5 ${KF_MIN_VERSION} REQUIRED COMPONENTS Config DocTools I18n 
KIO WidgetsAddons)
-
+if (QT_MAJOR_VERSION STREQUAL 6)
+    find_package(Qt6 REQUIRED COMPONENTS Core5Compat)
+endif()
 find_package(MusicBrainz5)
 set_package_properties(MusicBrainz5 PROPERTIES
    DESCRIPTION "Music metadata lookup for KDE multimedia applications through 
libkcddb. You need version 5.x of libmusicbrainz"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.04.3/libkcddb/CMakeLists.txt 
new/libkcddb-22.08.0/libkcddb/CMakeLists.txt
--- old/libkcddb-22.04.3/libkcddb/CMakeLists.txt        2022-05-26 
00:00:26.000000000 +0200
+++ new/libkcddb-22.08.0/libkcddb/CMakeLists.txt        2022-07-13 
14:28:30.000000000 +0200
@@ -1,6 +1,6 @@
 add_definitions(-DTRANSLATION_DOMAIN="libkcddb")
 
-set(KCDDB_INSTALL_INCLUDEDIR "${KDE_INSTALL_INCLUDEDIR}/KCddb5")
+set(KCDDB_INSTALL_INCLUDEDIR 
"${KDE_INSTALL_INCLUDEDIR}/KCddb${QT_MAJOR_VERSION}")
 set(KCDDB_CMAKECONFIG_NAME "KF5Cddb")
 
 ecm_setup_version(${libkcddb_VERSION}
@@ -75,6 +75,10 @@
         Qt${QT_MAJOR_VERSION}::Network
 )
 
+if (TARGET Qt6::Core5Compat)
+    target_link_libraries(KCddb PRIVATE Qt6::Core5Compat)
+endif()
+
 if(MUSICBRAINZ5_FOUND)
     target_link_libraries(KCddb PRIVATE musicbrainz)
 endif()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.04.3/libkcddb/cddb.cpp 
new/libkcddb-22.08.0/libkcddb/cddb.cpp
--- old/libkcddb-22.04.3/libkcddb/cddb.cpp      2022-05-26 00:00:26.000000000 
+0200
+++ new/libkcddb-22.08.0/libkcddb/cddb.cpp      2022-07-13 14:28:30.000000000 
+0200
@@ -90,11 +90,7 @@
     uint
   CDDB::statusCode( const QString & line )
   {
-#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
-    const QStringList tokenList = line.split(QLatin1Char( ' ' ), 
QString::SkipEmptyParts );
-#else
     const QStringList tokenList = line.split(QLatin1Char( ' ' ), 
Qt::SkipEmptyParts );
-#endif
 
     if (tokenList.isEmpty())
         return 410;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.04.3/libkcddb/cdinfo.cpp 
new/libkcddb-22.08.0/libkcddb/cdinfo.cpp
--- old/libkcddb-22.04.3/libkcddb/cdinfo.cpp    2022-05-26 00:00:26.000000000 
+0200
+++ new/libkcddb-22.08.0/libkcddb/cdinfo.cpp    2022-07-13 14:28:30.000000000 
+0200
@@ -18,6 +18,7 @@
 
 #include <QMap>
 #include <QRegExp>
+#include <QRegularExpression>
 
 namespace KCDDB
 {
@@ -109,7 +110,7 @@
       set(const QString& type, const QVariant &d)
       {
         //qDebug() << "set: " << type << ", " << d.toString();
-        if(type.contains(QRegExp( QLatin1String( "^T.*_.*$" )) )){
+        if(type.contains(QRegularExpression( QLatin1String( "^T.*_.*$" )) )){
                  qCDebug(LIBKCDDB) << "Error: custom cdinfo::set data can not 
start with T and contain a _";
           return;
         }
@@ -270,11 +271,7 @@
     bool
   CDInfo::load(const QString & string)
   {
-#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
-    return load(string.split(QLatin1Char( '\n' ),QString::SkipEmptyParts));
-#else
     return load(string.split(QLatin1Char( '\n' ),Qt::SkipEmptyParts));
-#endif
   }
 
     bool
@@ -288,12 +285,12 @@
     QStringList::ConstIterator it = lineList.begin();
 
     QRegExp rev(QLatin1String( "# Revision: (\\d+)" ));
-    QRegExp eol(QLatin1String( "[\r\n]" ));
+    const static QRegularExpression eol(QLatin1String( "[\r\n]" ));
 
     while ( it != lineList.end() )
     {
       QString line(*it);
-      line.replace(eol,QLatin1String( "" ));
+      line.remove(eol);
       ++it;
 
       if (rev.indexIn(line) != -1)
@@ -351,7 +348,7 @@
         uint trackNumber = key.mid( key.indexOf(QLatin1Char( '_' ))+1 
).toUInt();
         checkTrack( trackNumber );
 
-        QRegExp data(QString::fromLatin1("^T.*_%1$").arg(trackNumber));
+        QRegularExpression 
data(QString::fromLatin1("^T.*_%1$").arg(trackNumber));
         if  ( key.contains( data ) )
         {
           QString k = key.mid(1, key.indexOf(QLatin1Char( '_' ))-1);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.04.3/libkcddb/httplookup.cpp 
new/libkcddb-22.08.0/libkcddb/httplookup.cpp
--- old/libkcddb-22.04.3/libkcddb/httplookup.cpp        2022-05-26 
00:00:26.000000000 +0200
+++ new/libkcddb-22.08.0/libkcddb/httplookup.cpp        2022-07-13 
14:28:30.000000000 +0200
@@ -80,11 +80,7 @@
     void
   HTTPLookup::jobFinished()
   {
-#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
-    QStringList lineList = QString::fromUtf8(data_).split( QLatin1String( "\n" 
), QString::SkipEmptyParts );
-#else
     QStringList lineList = QString::fromUtf8(data_).split( QLatin1String( "\n" 
), Qt::SkipEmptyParts );
-#endif
     QStringList::ConstIterator it = lineList.constBegin();
 
     switch ( state_ )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.04.3/libkcddb/lookup.cpp 
new/libkcddb-22.08.0/libkcddb/lookup.cpp
--- old/libkcddb-22.04.3/libkcddb/lookup.cpp    2022-05-26 00:00:26.000000000 
+0200
+++ new/libkcddb-22.08.0/libkcddb/lookup.cpp    2022-07-13 14:28:30.000000000 
+0200
@@ -29,11 +29,7 @@
 
     if (  200 == serverStatus )
     {
-#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
-      QStringList tokenList = line.split( QLatin1Char( ' ' ), 
QString::SkipEmptyParts );
-#else
       QStringList tokenList = line.split( QLatin1Char( ' ' ), 
Qt::SkipEmptyParts );
-#endif
       matchList_.append(  qMakePair(  tokenList[  1 ], tokenList[  2 ] ) );
       return Success;
     }
@@ -52,11 +48,7 @@
     void
   Lookup::parseExtraMatch(  const QString & line )
   {
-#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
-    QStringList tokenList = line.split( QLatin1Char( ' ' ), 
QString::SkipEmptyParts );
-#else
     QStringList tokenList = line.split( QLatin1Char( ' ' ), Qt::SkipEmptyParts 
);
-#endif
     matchList_.append(  qMakePair(  tokenList[  0 ], tokenList[  1 ] ) );
   }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.04.3/po/ca@valencia/kcmcddb.po 
new/libkcddb-22.08.0/po/ca@valencia/kcmcddb.po
--- old/libkcddb-22.04.3/po/ca@valencia/kcmcddb.po      2022-07-05 
06:34:18.000000000 +0200
+++ new/libkcddb-22.08.0/po/ca@valencia/kcmcddb.po      2022-08-12 
02:06:18.000000000 +0200
@@ -211,7 +211,7 @@
 msgstr ""
 "freedb ha definit l'??s de l'HTTP per a les trameses, perqu?? els detalls del 
"
 "correu electr??nic que heu introdu??t estan incomplets. Reviseu la "
-"configuraci?? del correu i torneu a intentar-ho."
+"configuraci?? del correu i torneu-ho a intentar."
 
 #: kcmcddb.cpp:74
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.04.3/po/ca@valencia/libkcddb.po 
new/libkcddb-22.08.0/po/ca@valencia/libkcddb.po
--- old/libkcddb-22.04.3/po/ca@valencia/libkcddb.po     2022-07-05 
06:34:18.000000000 +0200
+++ new/libkcddb-22.08.0/po/ca@valencia/libkcddb.po     2022-08-12 
02:06:18.000000000 +0200
@@ -213,7 +213,7 @@
 msgstr ""
 "freedb ha definit l'??s de l'HTTP per a les trameses, perqu?? els detalls del 
"
 "correu electr??nic que heu introdu??t estan incomplets. Reviseu la "
-"configuraci?? del correu i torneu a intentar-ho."
+"configuraci?? del correu i torneu-ho a intentar."
 
 #: kcmcddb/kcmcddb.cpp:74
 #, kde-format
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.04.3/po/tr/kcmcddb.po 
new/libkcddb-22.08.0/po/tr/kcmcddb.po
--- old/libkcddb-22.04.3/po/tr/kcmcddb.po       2022-07-05 06:34:18.000000000 
+0200
+++ new/libkcddb-22.08.0/po/tr/kcmcddb.po       2022-08-12 02:06:19.000000000 
+0200
@@ -82,13 +82,13 @@
 #: cddbconfigwidget.ui:26
 #, kde-format
 msgid "Enable MusicBrainz lookup"
-msgstr "MusicBrainz'e bakmay?? etkinle??tir "
+msgstr "MusicBrainz'e bakmay?? etkinle??tir"
 
 #. i18n: ectx: property (text), widget (QCheckBox, kcfg_FreedbLookupEnabled)
 #: cddbconfigwidget.ui:33
 #, kde-format
 msgid "Enable freedb lookup"
-msgstr "Freedb'ye bakmay?? etkinle??tir "
+msgstr "Freedb'ye bakmay?? etkinle??tir"
 
 #. i18n: ectx: property (title), widget (QGroupBox, freedbServerBox)
 #: cddbconfigwidget.ui:40
@@ -222,6 +222,3 @@
 #, kde-format
 msgid "Incorrect Email Settings"
 msgstr "Yanl???? E-posta Ayarlar??"
-
-#~ msgid "freedb.freedb.org"
-#~ msgstr "freedb.freedb.org"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.04.3/po/tr/libkcddb.po 
new/libkcddb-22.08.0/po/tr/libkcddb.po
--- old/libkcddb-22.04.3/po/tr/libkcddb.po      2022-07-05 06:34:18.000000000 
+0200
+++ new/libkcddb-22.08.0/po/tr/libkcddb.po      2022-08-12 02:06:19.000000000 
+0200
@@ -78,13 +78,13 @@
 #: kcmcddb/cddbconfigwidget.ui:26
 #, kde-format
 msgid "Enable MusicBrainz lookup"
-msgstr "MusicBrainz sunucusunda aramay?? etkinle??tir "
+msgstr "MusicBrainz sunucusunda aramay?? etkinle??tir"
 
 #. i18n: ectx: property (text), widget (QCheckBox, kcfg_FreedbLookupEnabled)
 #: kcmcddb/cddbconfigwidget.ui:33
 #, kde-format
 msgid "Enable freedb lookup"
-msgstr "Freedb sunucusunda aramay?? etkinle??tir "
+msgstr "Freedb sunucusunda aramay?? etkinle??tir"
 
 #. i18n: ectx: property (title), widget (QGroupBox, freedbServerBox)
 #: kcmcddb/cddbconfigwidget.ui:40
@@ -994,7 +994,7 @@
 #: libkcddb/kcddb.cpp:31
 #, kde-format
 msgid "No response"
-msgstr "Cevap al??namad??"
+msgstr "Yan??t al??namad??"
 
 #: libkcddb/kcddb.cpp:35
 #, kde-format
@@ -1025,95 +1025,3 @@
 #, kde-format
 msgid "%1 (disc %2)"
 msgstr "%1 (disk %2)"
-
-#~ msgid "Track"
-#~ msgstr "Par??a"
-
-#~ msgid "Length"
-#~ msgstr "Uzunluk"
-
-#~ msgid "Title"
-#~ msgstr "Ba??l??k"
-
-#~ msgid "Artist"
-#~ msgstr "Sanat????"
-
-#~ msgid "Comment"
-#~ msgstr "Yorum"
-
-#~ msgid "Change Encoding"
-#~ msgstr "Kodlamay?? De??i??tir"
-
-#~ msgid "Revision:"
-#~ msgstr "Revizyon:"
-
-#~ msgid "Use the name of the artist if there is no title."
-#~ msgstr "Bir ba??l??k yoksa, sanat????n??n ismini kullan."
-
-#~ msgid "&Category:"
-#~ msgstr "&Kategori:"
-
-#~ msgid ""
-#~ "Write names as \"first last\", not \"last, first\". Omit any leading \"The"
-#~ "\".  Use \"Various\" for compilations."
-#~ msgstr ""
-#~ "??simleri \"Soyad??, Ad??\" yerine \"Ad?? Soyad??\" ??eklinde yaz??n. En 
ba??a"
-#~ "\"The\". koymaktan ka????n??n. Derlemeler i??in \"??e??itli\"'yi 
kullan??n."
-
-#~ msgid "&Artist:"
-#~ msgstr "S&anat????:"
-
-#~ msgid "&Year:"
-#~ msgstr "&Y??l:"
-
-#~ msgid "&Genre:"
-#~ msgstr "&Tarz:"
-
-#~ msgid "Disc Id values must be unique within a category."
-#~ msgstr "Bir kategori i??indeki Disk Kimli??i de??erleri e??siz olmal??."
-
-#~ msgid "&Multiple artists"
-#~ msgstr "&??oklu Sanat????"
-
-#~ msgid "Comment:"
-#~ msgstr "Yorum:"
-
-#~ msgid "&Title:"
-#~ msgstr "&Ba??l??k:"
-
-#~ msgid "Avoid custom values, as they will be written to CDDB as-is."
-#~ msgstr ""
-#~ "??zel de??erlerden ka????n??n, ????nk?? CDDB'ye olduklar?? gibi 
yaz??lacaklar."
-
-#~ msgid "Disc Id:"
-#~ msgstr "Disk Kimli??i:"
-
-#~ msgid "Length:"
-#~ msgstr "Uzunluk:"
-
-#~ msgid "For a CD-Extra, set title to \"Data\"."
-#~ msgstr "Bir CD-Extra i??in, ba??l?????? \"Data\" olarak ayarlay??n."
-
-#~ msgid "Change Encoding..."
-#~ msgstr "Kodlamay?? De??i??tir..."
-
-#~ msgid "Playing order:"
-#~ msgstr "??alma s??ras??:"
-
-#~ msgctxt "artist - cdtitle"
-#~ msgid "%1 - %2"
-#~ msgstr "%1 - %2"
-
-#~ msgid "Preview"
-#~ msgstr "??nizleme"
-
-#~ msgid "Encoding"
-#~ msgstr "Kodlama"
-
-#~ msgid "freedb.freedb.org"
-#~ msgstr "freedb.freedb.org"
-
-#, fuzzy
-#~| msgid "Dance"
-#~ msgid "Cancel"
-#~ msgstr "Dance"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.04.3/po/zh_CN/kcmcddb.po 
new/libkcddb-22.08.0/po/zh_CN/kcmcddb.po
--- old/libkcddb-22.04.3/po/zh_CN/kcmcddb.po    2022-07-05 06:34:18.000000000 
+0200
+++ new/libkcddb-22.08.0/po/zh_CN/kcmcddb.po    2022-08-12 02:06:19.000000000 
+0200
@@ -1,14 +1,9 @@
-# translation of kcmcddb.po to ????????????
-# Copyright (C) 2003, 2009 Free Software Foundation, Inc.
-#
-# Xiong Jiang <jxi...@offtopic.org>, 2003.
-# Ni Hui <shuizhuyuan...@126.com>, 2009, 2011.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2020-12-30 02:41+0100\n"
-"PO-Revision-Date: 2022-07-02 11:03\n"
+"PO-Revision-Date: 2022-08-07 13:32\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.04.3/po/zh_CN/libkcddb.po 
new/libkcddb-22.08.0/po/zh_CN/libkcddb.po
--- old/libkcddb-22.04.3/po/zh_CN/libkcddb.po   2022-07-05 06:34:18.000000000 
+0200
+++ new/libkcddb-22.08.0/po/zh_CN/libkcddb.po   2022-08-12 02:06:19.000000000 
+0200
@@ -1,16 +1,9 @@
-# translation of libkcddb.po to zh_CN
-# Copyright (C) 2003 Free Software Foundation, Inc.
-#
-# Yan Shuangchun <yah...@d3eye.com>, 2003.
-# Lie_Ex <lilith...@gmail.com>, 2007.
-# Ni Hui <shuizhuyuan...@126.com>, 2012.
-# Guo Yunhe <guoyunhebr...@gmail.com>, 2017.
 msgid ""
 msgstr ""
 "Project-Id-Version: kdeorg\n"
 "Report-Msgid-Bugs-To: https://bugs.kde.org\n";
 "POT-Creation-Date: 2022-01-01 00:43+0000\n"
-"PO-Revision-Date: 2022-07-02 11:03\n"
+"PO-Revision-Date: 2022-08-07 13:32\n"
 "Last-Translator: \n"
 "Language-Team: Chinese Simplified\n"
 "Language: zh_CN\n"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libkcddb-22.04.3/tests/cachetest.cpp 
new/libkcddb-22.08.0/tests/cachetest.cpp
--- old/libkcddb-22.04.3/tests/cachetest.cpp    2022-05-26 00:00:26.000000000 
+0200
+++ new/libkcddb-22.08.0/tests/cachetest.cpp    2022-07-13 14:28:30.000000000 
+0200
@@ -7,7 +7,6 @@
 #include "cachetest.h"
 #include "libkcddb/cache.h"
 
-#include "libkcddb/cdinfo.h"
 #include "libkcddb/client.h"
 #include "config-musicbrainz.h"
 #include <QTest>
@@ -38,7 +37,7 @@
 
   for (int i=0; i<10; i++)
   {
-    m_info.track(i).set(Title, QString().leftJustified(30*(i+1), 'a'+i));
+    m_info.track(i).set(Title, QString().leftJustified(30*(i+1), 
QChar('a'+i)));
   }
 
 }

Reply via email to