Hello community, here is the log from the commit of package katomic for openSUSE:Factory checked in at 2019-04-28 20:03:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/katomic (Old) and /work/SRC/openSUSE:Factory/.katomic.new.5536 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "katomic" Sun Apr 28 20:03:26 2019 rev:85 rq:696215 version:19.04.0 Changes: -------- --- /work/SRC/openSUSE:Factory/katomic/katomic.changes 2019-03-11 13:43:29.449511501 +0100 +++ /work/SRC/openSUSE:Factory/.katomic.new.5536/katomic.changes 2019-04-28 20:03:46.306778638 +0200 @@ -1,0 +2,32 @@ +Sat Apr 20 06:51:53 UTC 2019 - [email protected] + +- Update to 19.04.0 + * New feature release + * For more details please see: + * https://www.kde.org/announcements/announce-applications-19.04.0.php +- Changes since 19.03.90: + * No code changes since 19.03.90 + +------------------------------------------------------------------- +Tue Apr 09 20:54:39 UTC 2019 - [email protected] + +- Update to 19.03.90 + * New feature release + * For more details please see: + * https://kde.org/announcements/announce-applications-19.04-rc.php +- Changes since 19.03.80: + * No code changes since 19.03.80 + +------------------------------------------------------------------- +Wed Mar 27 06:40:58 UTC 2019 - [email protected] + +- Update to 19.03.80 + * New feature release + * For more details please see: + * https://kde.org/announcements/announce-applications-19.04-beta.php +- Changes since 18.12.3: + * Remove deprecated method + * Fix some clazy warning + * Fix compile with strict compile flags + add nullptr + add override + +------------------------------------------------------------------- Old: ---- katomic-18.12.3.tar.xz New: ---- katomic-19.04.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ katomic.spec ++++++ --- /var/tmp/diff_new_pack.N3TCr1/_old 2019-04-28 20:03:48.470777332 +0200 +++ /var/tmp/diff_new_pack.N3TCr1/_new 2019-04-28 20:03:48.478777328 +0200 @@ -21,7 +21,7 @@ %{!?_kapp_version: %define _kapp_version %(echo %{version}| awk -F. '{print $1"."$2}')} %bcond_without lang Name: katomic -Version: 18.12.3 +Version: 19.04.0 Release: 0 Summary: Sokoban-like logic game License: GPL-2.0-or-later ++++++ katomic-18.12.3.tar.xz -> katomic-19.04.0.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/.gitignore new/katomic-19.04.0/.gitignore --- old/katomic-18.12.3/.gitignore 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/.gitignore 2019-02-27 08:05:18.000000000 +0100 @@ -1,3 +1,4 @@ .kdev4/ -build/ +/build*/ *.kdev4 +CMakeLists.txt.user* diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/CMakeLists.txt new/katomic-19.04.0/CMakeLists.txt --- old/katomic-18.12.3/CMakeLists.txt 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/CMakeLists.txt 2019-04-12 02:08:52.000000000 +0200 @@ -24,7 +24,7 @@ include(FeatureSummary) include(ECMInstallIcons) include(KDEInstallDirs) -include(KDECompilerSettings NO_POLICY_SCOPE) +include(KDEFrameworkCompilerSettings NO_POLICY_SCOPE) include(KDECMakeSettings) include(ECMAddAppIcon) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/chooselevelsetdialog.cpp new/katomic-19.04.0/chooselevelsetdialog.cpp --- old/katomic-18.12.3/chooselevelsetdialog.cpp 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/chooselevelsetdialog.cpp 2019-02-27 08:05:18.000000000 +0100 @@ -88,7 +88,7 @@ Q_FOREACH (const QString& dir, dirs) { const QStringList fileNames = QDir(dir).entryList(QStringList() << QStringLiteral("*.dat")); Q_FOREACH (const QString& file, fileNames) { - fileList.append(dir + '/' + file); + fileList.append(dir + QLatin1Char('/') + file); } } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/chooselevelsetdialog.h new/katomic-19.04.0/chooselevelsetdialog.h --- old/katomic-18.12.3/chooselevelsetdialog.h 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/chooselevelsetdialog.h 2019-02-27 08:05:18.000000000 +0100 @@ -33,12 +33,12 @@ Q_OBJECT public: - explicit ChooseLevelSetDialog(QWidget* parent=0); + explicit ChooseLevelSetDialog(QWidget* parent=nullptr); void setCurrentLevelSet(const QString& levelSetName); void loadData(); -signals: +Q_SIGNALS: void levelSetChanged(QString); protected Q_SLOTS: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/fielditem.cpp new/katomic-19.04.0/fielditem.cpp --- old/katomic-18.12.3/fielditem.cpp 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/fielditem.cpp 2019-02-27 08:05:18.000000000 +0100 @@ -45,7 +45,7 @@ static const char* arrow_spriteKeys[] = {"arrow_Up", "arrow_Down", "arrow_Left", "arrow_Right"}; ArrowFieldItem::ArrowFieldItem( KGameRenderer* renderer, PlayField::Direction dir, QGraphicsScene* scene ) - : FieldItem( renderer, arrow_spriteKeys[dir], scene ) + : FieldItem( renderer, QLatin1String(arrow_spriteKeys[dir]), scene ) { setOpacity(0.0); //start invisible m_timeLine = new QTimeLine(200); @@ -197,8 +197,8 @@ // ----------------- MoleculePreviewItem ---------------------------- MoleculePreviewItem::MoleculePreviewItem( PlayField* scene ) - : QGraphicsItem( 0 ), m_renderer(scene->renderer()), m_width(0), - m_atomSize(20), m_maxAtomSize(30), m_mol( 0 ) + : QGraphicsItem( nullptr ), m_renderer(scene->renderer()), m_width(0), + m_atomSize(20), m_maxAtomSize(30), m_mol( nullptr ) { scene->addItem(this); } @@ -234,7 +234,7 @@ void MoleculePreviewItem::paint( QPainter * painter, const QStyleOptionGraphicsItem*, QWidget *) { - if ( m_width == 0 || m_mol == 0 ) + if ( m_width == 0 || m_mol == nullptr ) return; painter->save(); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/fielditem.h new/katomic-19.04.0/fielditem.h --- old/katomic-18.12.3/fielditem.h 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/fielditem.h 2019-02-27 08:05:18.000000000 +0100 @@ -51,7 +51,7 @@ // enable use of qgraphicsitem_cast enum { Type = UserType + 1 }; - int type() const Q_DECL_OVERRIDE { return Type; } + int type() const override { return Type; } private: int m_fieldX; int m_fieldY; @@ -82,7 +82,7 @@ // enable use of qgraphicsitem_cast enum { Type = UserType + 2 }; - int type() const Q_DECL_OVERRIDE { return Type; } + int type() const override { return Type; } private: // from molecule int m_atomNum; @@ -107,15 +107,15 @@ Q_OBJECT public: explicit ArrowFieldItem( KGameRenderer* renderer, PlayField::Direction dir, QGraphicsScene* scene ); - virtual ~ArrowFieldItem(); + ~ArrowFieldItem() override; // enable use of qgraphicsitem_cast enum { Type = UserType + 3 }; - int type() const Q_DECL_OVERRIDE { return Type; } -private slots: + int type() const override { return Type; } +private Q_SLOTS: void setOpacity( qreal opacity ); private: - QVariant itemChange( GraphicsItemChange change, const QVariant& value ) Q_DECL_OVERRIDE; + QVariant itemChange( GraphicsItemChange change, const QVariant& value ) override; /** * Timeline object to control fade-in animation @@ -133,7 +133,7 @@ { public: explicit MoleculePreviewItem( PlayField* scene ); - ~MoleculePreviewItem(); + ~MoleculePreviewItem() override; /** * Sets molecule to display @@ -154,9 +154,9 @@ */ void setMaxAtomSize( int maxSize ); - inline QRectF boundingRect() const Q_DECL_OVERRIDE { return QRectF(0,0, m_width, m_width); } // reimp + inline QRectF boundingRect() const override { return QRectF(0,0, m_width, m_width); } // reimp private: - void paint( QPainter * painter, const QStyleOptionGraphicsItem*, QWidget * widget = 0 ) Q_DECL_OVERRIDE; + void paint( QPainter * painter, const QStyleOptionGraphicsItem*, QWidget * widget = nullptr ) override; KGameRenderer* m_renderer; int m_width; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/gamewidget.cpp new/katomic-19.04.0/gamewidget.cpp --- old/katomic-18.12.3/gamewidget.cpp 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/gamewidget.cpp 2019-02-27 08:05:18.000000000 +0100 @@ -42,7 +42,7 @@ m_levelHighscore = 0; QVBoxLayout *top = new QVBoxLayout(this); - top->setMargin(0); + top->setContentsMargins(0, 0, 0, 0); // playfield m_playField = new PlayField(this); @@ -222,7 +222,7 @@ if (levelSet.isEmpty()) { //qDebug() << "note: savegame file doesn't contain info about levelset, assuming default one"; - levelSet = DEFAULT_LEVELSET_NAME; + levelSet = QStringLiteral(DEFAULT_LEVELSET_NAME); } bool res = setLevelSet(levelSet); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/gamewidget.h new/katomic-19.04.0/gamewidget.h --- old/katomic-18.12.3/gamewidget.h 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/gamewidget.h 2019-02-27 08:05:18.000000000 +0100 @@ -34,8 +34,8 @@ Q_OBJECT public: - GameWidget ( const QString& levelSet, QWidget *parent ); - ~GameWidget(); + explicit GameWidget ( const QString& levelSet, QWidget *parent ); + ~GameWidget() override; bool setLevelSet(const QString& levelSet); @@ -60,11 +60,11 @@ void saveMaxAccessibleLevel(int level); void saveLastPlayedLevel(); -signals: +Q_SIGNALS: void statsChanged(int level,int score,int highscore); void levelChanged(int level); -public slots: +public Q_SLOTS: void prevLevel(); void nextLevel(); @@ -87,7 +87,7 @@ void moveRight(); private: - void resizeEvent( QResizeEvent* ) Q_DECL_OVERRIDE; + void resizeEvent( QResizeEvent* ) override; void switchToLevel (int); int lastPlayedLevel() const; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/highscores.cpp new/katomic-19.04.0/highscores.cpp --- old/katomic-18.12.3/highscores.cpp 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/highscores.cpp 2019-02-27 08:05:18.000000000 +0100 @@ -28,15 +28,15 @@ KUser user; m_playerName = user.property(KUser::FullName).toString().isEmpty() ? user.loginName() : user.property(KUser::FullName).toString(); - m_hsFile = KSharedConfig::openConfig( QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) + QLatin1Char('/') + "highscores", KConfig::SimpleConfig); + m_hsFile = KSharedConfig::openConfig( QStandardPaths::writableLocation(QStandardPaths::AppDataLocation) + QLatin1Char('/') + QStringLiteral("highscores"), KConfig::SimpleConfig); } bool KAtomicHighscores::addScore( int numMoves, const QString& levelSetName, int level ) { - KConfigGroup userHsGroup( m_hsFile, "Highscores_"+m_playerName ); + KConfigGroup userHsGroup( m_hsFile, QStringLiteral("Highscores_")+m_playerName ); KConfigGroup levelSetGroup( &userHsGroup, levelSetName ); - QString keyStr = "Level"+QString::number(level); + QString keyStr = QStringLiteral("Level")+QString::number(level); int curHighScore = levelSetGroup.readEntry( keyStr, -1 ); if( numMoves < curHighScore || curHighScore == -1 ) // new highscore! { @@ -48,9 +48,9 @@ int KAtomicHighscores::levelHighscore( const QString& levelSetName, int level ) const { - KConfigGroup userHsGroup( m_hsFile, "Highscores_"+m_playerName ); + KConfigGroup userHsGroup( m_hsFile, QStringLiteral("Highscores_")+m_playerName ); KConfigGroup levelSetGroup( &userHsGroup, levelSetName ); - QString keyStr = "Level"+QString::number(level); + QString keyStr = QStringLiteral("Level")+QString::number(level); return levelSetGroup.readEntry( keyStr, 0 ); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/levelset.cpp new/katomic-19.04.0/levelset.cpp --- old/katomic-18.12.3/levelset.cpp 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/levelset.cpp 2019-02-27 08:05:18.000000000 +0100 @@ -169,13 +169,13 @@ const LevelData* LevelSet::levelData(int levelNum) const { - LevelData* data = m_levelCache.value(levelNum, 0); + LevelData* data = m_levelCache.value(levelNum, nullptr); return data ? data : readLevel(levelNum); } const LevelData* LevelSet::readLevel(int levelNum) const { - KConfigGroup config = m_levelsFile->group("Level"+QString::number(levelNum)); + KConfigGroup config = m_levelsFile->group(QStringLiteral("Level")+QString::number(levelNum)); QString key; QList<LevelData::Element> elements; @@ -190,11 +190,11 @@ if (line.isEmpty()) { //qDebug() << "error while reading level" << levelNum << "data from" << m_name; - return 0; + return nullptr; } QChar c = line.at(i); - if( c == '#' ) + if( c == QLatin1Char('#') ) { LevelData::Element el; el.x = i; @@ -203,7 +203,7 @@ elements.append(el); } - else if (c != '.')//atom + else if (c != QLatin1Char('.'))//atom { LevelData::Element el; el.x = i; @@ -225,7 +225,7 @@ const Molecule* LevelSet::readLevelMolecule(int levelNum) const { Molecule* mol = new Molecule(); - KConfigGroup config = m_levelsFile->group("Level"+QString::number(levelNum)); + KConfigGroup config = m_levelsFile->group(QStringLiteral("Level")+QString::number(levelNum)); QString key; @@ -242,7 +242,7 @@ current.obj = value.at(0).toLatin1(); value = value.mid(2); - strncpy(current.conn, value.toLatin1(), sizeof(current.conn)); + strncpy(current.conn, value.toLatin1().constData(), sizeof(current.conn)); if (mol->m_atoms.indexOf(current) != -1) qWarning() << "OOOPS, duplicate atom definition in" << key; @@ -281,14 +281,14 @@ mol->m_width = max_i+1; - mol->m_name = i18n(config.readEntry("Name", I18N_NOOP("Noname")).toUtf8()); + mol->m_name = i18n(config.readEntry("Name", I18N_NOOP("Noname")).toUtf8().constData()); return mol; } bool LevelSet::isDefaultLevelsAvailable() { - QString file = QStandardPaths::locate(QStandardPaths::AppDataLocation, QStringLiteral("levels/%1.dat").arg(DEFAULT_LEVELSET_NAME)); + QString file = QStandardPaths::locate(QStandardPaths::AppDataLocation, QStringLiteral("levels/%1.dat").arg(QLatin1String(DEFAULT_LEVELSET_NAME))); if (file.isEmpty()) { //qDebug() << "default level set \"" << DEFAULT_LEVELSET_NAME << "\" data file not found. Check your installation"; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/levelsetdelegate.cpp new/katomic-19.04.0/levelsetdelegate.cpp --- old/katomic-18.12.3/levelsetdelegate.cpp 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/levelsetdelegate.cpp 2019-02-27 08:05:18.000000000 +0100 @@ -51,7 +51,7 @@ option.decorationSize = QSize(48, 48); QStyle* style = QApplication::style(); - style->drawControl(QStyle::CE_ItemViewItem, &option, p, 0); + style->drawControl(QStyle::CE_ItemViewItem, &option, p, nullptr); if (option.state & QStyle::State_Selected) p->setPen(option.palette.color(QPalette::Normal, QPalette::HighlightedText)); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/levelsetdelegate.h new/katomic-19.04.0/levelsetdelegate.h --- old/katomic-18.12.3/levelsetdelegate.h 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/levelsetdelegate.h 2019-02-27 08:05:18.000000000 +0100 @@ -28,10 +28,10 @@ class LevelSetDelegate : public QStyledItemDelegate { public: - explicit LevelSetDelegate(QObject* parent = 0); + explicit LevelSetDelegate(QObject* parent = nullptr); - void paint(QPainter* p, const QStyleOptionViewItem& option, const QModelIndex& index) const Q_DECL_OVERRIDE; - QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const Q_DECL_OVERRIDE; + void paint(QPainter* p, const QStyleOptionViewItem& option, const QModelIndex& index) const override; + QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const override; private: mutable int m_lineHeight; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/main.cpp new/katomic-19.04.0/main.cpp --- old/katomic-18.12.3/main.cpp 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/main.cpp 2019-02-27 08:05:18.000000000 +0100 @@ -54,7 +54,7 @@ migrate.migrate(); KLocalizedString::setApplicationDomain("katomic"); KAboutData aboutData( QStringLiteral("katomic"), i18n("KAtomic"), - version, i18n(description), KAboutLicense::GPL, + QLatin1String(version), i18n(description), KAboutLicense::GPL, i18n("(c) 1998, Andreas Wuest\n(c) 2007-2009 Dmitry Suzdalev")); aboutData.addAuthor(i18n("Andreas Wuest"), i18n("Original author"), QStringLiteral("[email protected]")); aboutData.addAuthor(i18n("Dmitry Suzdalev"), i18n("Porting to KDE4. Current maintainer"), QStringLiteral("[email protected]")); @@ -82,7 +82,7 @@ KDBusService service; if (!LevelSet::isDefaultLevelsAvailable()) { - KMessageBox::error(0, i18n("KAtomic failed to find its default level set and will quit. Please check your installation.")); + KMessageBox::error(nullptr, i18n("KAtomic failed to find its default level set and will quit. Please check your installation.")); QTimer::singleShot(0, &app, SLOT(quit())); } else diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/playfield.cpp new/katomic-19.04.0/playfield.cpp --- old/katomic-18.12.3/playfield.cpp 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/playfield.cpp 2019-02-27 08:05:18.000000000 +0100 @@ -50,7 +50,7 @@ }; PlayField::PlayField( QObject* parent ) - : QGraphicsScene(parent), m_renderer(new Theme), m_numMoves(0), m_levelData(0), + : QGraphicsScene(parent), m_renderer(new Theme), m_numMoves(0), m_levelData(nullptr), m_elemSize(MIN_ELEM_SIZE), m_selIdx(-1), m_animSpeed(120), m_levelFinished(false) { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/playfield.h new/katomic-19.04.0/playfield.h --- old/katomic-18.12.3/playfield.h 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/playfield.h 2019-02-27 08:05:18.000000000 +0100 @@ -92,7 +92,7 @@ */ KGameRenderer* renderer() { return &m_renderer; } -public slots: +public Q_SLOTS: /** * Selects next atom */ @@ -117,16 +117,16 @@ * Redoes all movements */ void redoAll(); -signals: +Q_SIGNALS: void gameOver(int numMoves); void updateMoves(int); void enableUndo(bool); void enableRedo(bool); -private slots: +private Q_SLOTS: void atomAnimFrameChanged(int frame); private: - void drawForeground( QPainter*, const QRectF& ) Q_DECL_OVERRIDE; - void mousePressEvent( QGraphicsSceneMouseEvent* ev ) Q_DECL_OVERRIDE; + void drawForeground( QPainter*, const QRectF& ) override; + void mousePressEvent( QGraphicsSceneMouseEvent* ev ) override; /** * Checks if molecule is finished diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/ar/katomic.po new/katomic-19.04.0/po/ar/katomic.po --- old/katomic-18.12.3/po/ar/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/ar/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2007-10-14 15:44+0000\n" "Last-Translator: Youssef Chahibi <[email protected]>\n" "Language-Team: <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/bg/katomic.po new/katomic-19.04.0/po/bg/katomic.po --- old/katomic-18.12.3/po/bg/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/bg/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -20,7 +20,7 @@ # on the bulgarian chemical compound names # please contact vladimirg at users.sourceforge.net # -# $Id: katomic.po 1528210 2018-11-12 06:44:57Z scripty $ +# $Id: katomic.po 1522687 2018-08-16 08:38:04Z scripty $ # # 2. Standard names. Example: 3,4-дихидрокси-3-циклобутен-1,2-дион. # Zlatko Popov <[email protected]>, 2006. @@ -30,7 +30,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2011-07-28 18:17+0300\n" "Last-Translator: Yasen Pramatarov <[email protected]>\n" "Language-Team: Bulgarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/bs/katomic.po new/katomic-19.04.0/po/bs/katomic.po --- old/katomic-18.12.3/po/bs/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/bs/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kdegames\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2013-10-18 20:28+0000\n" "Last-Translator: Samir Ribić <Unknown>\n" "Language-Team: Bosnian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/ca/katomic.po new/katomic-19.04.0/po/ca/katomic.po --- old/katomic-18.12.3/po/ca/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/ca/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2016-07-23 06:52+0100\n" "Last-Translator: Antoni Bella Pérez <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/ca@valencia/katomic.po new/katomic-19.04.0/po/ca@valencia/katomic.po --- old/katomic-18.12.3/po/ca@valencia/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/ca@valencia/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2016-07-23 06:52+0100\n" "Last-Translator: Antoni Bella Pérez <[email protected]>\n" "Language-Team: Catalan <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/cs/katomic.po new/katomic-19.04.0/po/cs/katomic.po --- old/katomic-18.12.3/po/cs/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/cs/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2017-09-12 11:42+0100\n" "Last-Translator: Vít Pelčák <[email protected]>\n" "Language-Team: Czech <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/da/katomic.po new/katomic-19.04.0/po/da/katomic.po --- old/katomic-18.12.3/po/da/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/da/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2010-12-04 19:35+0100\n" "Last-Translator: Martin Schlander <[email protected]>\n" "Language-Team: Danish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/de/katomic.po new/katomic-19.04.0/po/de/katomic.po --- old/katomic-18.12.3/po/de/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/de/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2012-05-18 19:01+0200\n" "Last-Translator: Frederik Schwarzer <[email protected]>\n" "Language-Team: German <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/el/katomic.po new/katomic-19.04.0/po/el/katomic.po --- old/katomic-18.12.3/po/el/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/el/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2012-08-06 18:10+0200\n" "Last-Translator: Dimitrios Glentadakis <[email protected]>\n" "Language-Team: Greek <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/en_GB/katomic.po new/katomic-19.04.0/po/en_GB/katomic.po --- old/katomic-18.12.3/po/en_GB/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/en_GB/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2010-09-09 10:44+0100\n" "Last-Translator: Andrew Coles <[email protected]>\n" "Language-Team: British English <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/eo/katomic.po new/katomic-19.04.0/po/eo/katomic.po --- old/katomic-18.12.3/po/eo/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/eo/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2002-03-10 20:59GMT\n" "Last-Translator: Wolfram Diestel <[email protected]>\n" "Language-Team: Esperanto <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/es/katomic.po new/katomic-19.04.0/po/es/katomic.po --- old/katomic-18.12.3/po/es/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/es/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2010-08-14 18:04+0200\n" "Last-Translator: Kira J. Fernandez <[email protected]>\n" "Language-Team: Español <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/et/katomic.po new/katomic-19.04.0/po/et/katomic.po --- old/katomic-18.12.3/po/et/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/et/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2010-10-19 05:22+0300\n" "Last-Translator: Marek Laane <[email protected]>\n" "Language-Team: Estonian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/eu/katomic.po new/katomic-19.04.0/po/eu/katomic.po --- old/katomic-18.12.3/po/eu/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/eu/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2009-06-16 10:07+0200\n" "Last-Translator: Iñaki Larrañaga Murgoitio <[email protected]>\n" "Language-Team: Basque <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/fa/katomic.po new/katomic-19.04.0/po/fa/katomic.po --- old/katomic-18.12.3/po/fa/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/fa/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2008-04-15 16:06+0330\n" "Last-Translator: Emil Sedgh <[email protected]>\n" "Language-Team: American English <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/fi/katomic.po new/katomic-19.04.0/po/fi/katomic.po --- old/katomic-18.12.3/po/fi/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/fi/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2014-11-08 02:38+0200\n" "Last-Translator: Lasse Liehu <[email protected]>\n" "Language-Team: Finnish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/fr/katomic.po new/katomic-19.04.0/po/fr/katomic.po --- old/katomic-18.12.3/po/fr/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/fr/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -20,7 +20,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2013-07-08 17:43+0200\n" "Last-Translator: xavier <[email protected]>\n" "Language-Team: French <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/ga/katomic.po new/katomic-19.04.0/po/ga/katomic.po --- old/katomic-18.12.3/po/ga/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/ga/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kdegames/katomic.po\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2004-12-03 14:52-0500\n" "Last-Translator: Kevin Scannell <[email protected]>\n" "Language-Team: Irish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/gl/katomic.po new/katomic-19.04.0/po/gl/katomic.po --- old/katomic-18.12.3/po/gl/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/gl/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2017-11-01 14:41+0100\n" "Last-Translator: Adrián Chaves (Gallaecio) <[email protected]>\n" "Language-Team: Galician <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/he/katomic.po new/katomic-19.04.0/po/he/katomic.po --- old/katomic-18.12.3/po/he/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/he/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -17,7 +17,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2017-05-16 07:01-0400\n" "Last-Translator: Copied by Zanata <[email protected]>\n" "Language-Team: Hebrew <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/hi/katomic.po new/katomic-19.04.0/po/hi/katomic.po --- old/katomic-18.12.3/po/hi/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/hi/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2007-12-23 17:12+0530\n" "Last-Translator: Ravishankar Shrivastava <[email protected]>\n" "Language-Team: Hindi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/hr/katomic.po new/katomic-19.04.0/po/hr/katomic.po --- old/katomic-18.12.3/po/hr/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/hr/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: katomic 0\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2010-10-29 20:14+0200\n" "Last-Translator: Oliver Mucafir <[email protected]>\n" "Language-Team: Croatian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/hu/katomic.po new/katomic-19.04.0/po/hu/katomic.po --- old/katomic-18.12.3/po/hu/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/hu/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: KDE 4.3\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2012-08-20 14:00+0200\n" "Last-Translator: Balázs Úr <[email protected]>\n" "Language-Team: Hungarian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/is/katomic.po new/katomic-19.04.0/po/is/katomic.po --- old/katomic-18.12.3/po/is/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/is/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2009-06-13 16:24+0000\n" "Last-Translator: Sveinn í Felli <[email protected]>\n" "Language-Team: icelandic <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/it/katomic.po new/katomic-19.04.0/po/it/katomic.po --- old/katomic-18.12.3/po/it/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/it/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2010-12-09 20:20+0100\n" "Last-Translator: Federico Zenith <[email protected]>\n" "Language-Team: Italian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/ja/katomic.po new/katomic-19.04.0/po/ja/katomic.po --- old/katomic-18.12.3/po/ja/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/ja/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2010-02-02 22:00+0900\n" "Last-Translator: Yukiko Bando <[email protected]>\n" "Language-Team: Japanese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/kk/katomic.po new/katomic-19.04.0/po/kk/katomic.po --- old/katomic-18.12.3/po/kk/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/kk/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2012-02-28 06:11+0600\n" "Last-Translator: Sairan Kikkarin <[email protected]>\n" "Language-Team: Kazakh <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/km/katomic.po new/katomic-19.04.0/po/km/katomic.po --- old/katomic-18.12.3/po/km/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/km/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2009-10-28 07:40+0700\n" "Last-Translator: Morn Met\n" "Language-Team: Khmer <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/ko/katomic.po new/katomic-19.04.0/po/ko/katomic.po --- old/katomic-18.12.3/po/ko/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/ko/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kdegames\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2011-02-27 02:14+0900\n" "Last-Translator: Shinjo Park <[email protected]>\n" "Language-Team: Korean <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/lt/katomic.po new/katomic-19.04.0/po/lt/katomic.po --- old/katomic-18.12.3/po/lt/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/lt/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2011-08-08 20:44+0300\n" "Last-Translator: Remigijus Jarmalavičius <[email protected]>\n" "Language-Team: Lithuanian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/lv/katomic.po new/katomic-19.04.0/po/lv/katomic.po --- old/katomic-18.12.3/po/lv/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/lv/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2012-06-29 20:16+0300\n" "Last-Translator: Einars Sprugis <[email protected]>\n" "Language-Team: Latvian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/mr/katomic.po new/katomic-19.04.0/po/mr/katomic.po --- old/katomic-18.12.3/po/mr/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/mr/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2013-03-13 13:21+0530\n" "Last-Translator: Chetan Khona <[email protected]>\n" "Language-Team: Marathi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/nb/katomic.po new/katomic-19.04.0/po/nb/katomic.po --- old/katomic-18.12.3/po/nb/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/nb/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2010-10-19 12:05+0200\n" "Last-Translator: Bjørn Steensrud <[email protected]>\n" "Language-Team: Norwegian Bokmål <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/nds/katomic.po new/katomic-19.04.0/po/nds/katomic.po --- old/katomic-18.12.3/po/nds/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/nds/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2010-08-27 08:53+0200\n" "Last-Translator: Manfred Wiese <[email protected]>\n" "Language-Team: Low Saxon <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/nl/katomic.po new/katomic-19.04.0/po/nl/katomic.po --- old/katomic-18.12.3/po/nl/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/nl/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2010-09-11 10:56+0200\n" "Last-Translator: Freek de Kruijf <[email protected]>\n" "Language-Team: Dutch <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/nn/katomic.po new/katomic-19.04.0/po/nn/katomic.po --- old/katomic-18.12.3/po/nn/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/nn/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2016-01-07 20:39+0100\n" "Last-Translator: Karl Ove Hufthammer <[email protected]>\n" "Language-Team: Norwegian Nynorsk <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/pa/katomic.po new/katomic-19.04.0/po/pa/katomic.po --- old/katomic-18.12.3/po/pa/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/pa/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2007-01-17 11:09+0530\n" "Last-Translator: A S Alam <[email protected]>\n" "Language-Team: Punjabi <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/pl/katomic.po new/katomic-19.04.0/po/pl/katomic.po --- old/katomic-18.12.3/po/pl/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/pl/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -1,5 +1,5 @@ # translation of katomic.po to Polish -# Version: $Revision: 1528210 $ +# Version: $Revision: 1522687 $ # Michal Rudolf <[email protected]>, 2003, 2005, 2007, 2009. # Maciej Wikło <[email protected]>, 2010. # Marta Rybczyńska <[email protected]>, 2010. @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2016-08-20 07:55+0100\n" "Last-Translator: Łukasz Wojniłowicz <[email protected]>\n" "Language-Team: Polish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/pt/katomic.po new/katomic-19.04.0/po/pt/katomic.po --- old/katomic-18.12.3/po/pt/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/pt/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -2,7 +2,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2010-08-14 10:43+0100\n" "Last-Translator: Pedro Morais <[email protected]>\n" "Language-Team: pt <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/pt_BR/katomic.po new/katomic-19.04.0/po/pt_BR/katomic.po --- old/katomic-18.12.3/po/pt_BR/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/pt_BR/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2017-10-25 11:46-0300\n" "Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n" "Language-Team: Portuguese <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/ro/katomic.po new/katomic-19.04.0/po/ro/katomic.po --- old/katomic-18.12.3/po/ro/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/ro/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2009-08-09 07:59+0300\n" "Last-Translator: Sergiu Bivol <[email protected]>\n" "Language-Team: Română <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/ru/katomic.po new/katomic-19.04.0/po/ru/katomic.po --- old/katomic-18.12.3/po/ru/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/ru/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2016-01-07 18:21+0300\n" "Last-Translator: Alexander Potashev <[email protected]>\n" "Language-Team: Russian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/sk/katomic.po new/katomic-19.04.0/po/sk/katomic.po --- old/katomic-18.12.3/po/sk/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/sk/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2011-01-16 14:41+0100\n" "Last-Translator: Michal Sulek <[email protected]>\n" "Language-Team: Slovak <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/sl/katomic.po new/katomic-19.04.0/po/sl/katomic.po --- old/katomic-18.12.3/po/sl/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/sl/katomic.po 2019-04-12 02:08:51.000000000 +0200 @@ -2,7 +2,7 @@ # Translation of katomic.po to Slovenian # -*- mode:po; coding:iso-latin-2; -*- Slovenian translation of Katomic. # Copyright (C) 2001, 2003, 2004, 2006, 2007 Free Software Foundation, Inc. -# $Id: katomic.po 1528210 2018-11-12 06:44:57Z scripty $ +# $Id: katomic.po 1522687 2018-08-16 08:38:04Z scripty $ # $Source$ # # Roman Maurer <[email protected]>, 2001. @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2014-12-07 12:57+0100\n" "Last-Translator: Andrej Mernik <[email protected]>\n" "Language-Team: Slovenian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/sr/katomic.po new/katomic-19.04.0/po/sr/katomic.po --- old/katomic-18.12.3/po/sr/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/sr/katomic.po 2019-04-12 02:08:52.000000000 +0200 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2016-03-20 15:25+0100\n" "Last-Translator: Chusslove Illich <[email protected]>\n" "Language-Team: Serbian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/sv/katomic.po new/katomic-19.04.0/po/sv/katomic.po --- old/katomic-18.12.3/po/sv/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/sv/katomic.po 2019-04-12 02:08:52.000000000 +0200 @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2010-08-14 15:51+0200\n" "Last-Translator: Stefan Asserhäll <[email protected]>\n" "Language-Team: Swedish <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/tr/katomic.po new/katomic-19.04.0/po/tr/katomic.po --- old/katomic-18.12.3/po/tr/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/tr/katomic.po 2019-04-12 02:08:52.000000000 +0200 @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: kdegames-kde4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2014-06-08 13:55+0000\n" "Last-Translator: Volkan Gezer <[email protected]>\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/kdegames-k-tr/" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/ug/katomic.po new/katomic-19.04.0/po/ug/katomic.po --- old/katomic-18.12.3/po/ug/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/ug/katomic.po 2019-04-12 02:08:52.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2013-09-08 07:05+0900\n" "Last-Translator: Gheyret Kenji <[email protected]>\n" "Language-Team: Uyghur Computer Science Association <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/uk/katomic.po new/katomic-19.04.0/po/uk/katomic.po --- old/katomic-18.12.3/po/uk/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/uk/katomic.po 2019-04-12 02:08:52.000000000 +0200 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2010-08-14 08:03+0300\n" "Last-Translator: Yuri Chornoivan <[email protected]>\n" "Language-Team: Ukrainian <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/zh_CN/katomic.po new/katomic-19.04.0/po/zh_CN/katomic.po --- old/katomic-18.12.3/po/zh_CN/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/zh_CN/katomic.po 2019-04-12 02:08:52.000000000 +0200 @@ -12,8 +12,8 @@ msgstr "" "Project-Id-Version: kdeorg\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" -"PO-Revision-Date: 2019-02-20 23:30\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" +"PO-Revision-Date: 2019-04-09 18:54\n" "Last-Translator: guoyunhe <[email protected]>\n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/po/zh_TW/katomic.po new/katomic-19.04.0/po/zh_TW/katomic.po --- old/katomic-18.12.3/po/zh_TW/katomic.po 2019-03-05 01:14:18.000000000 +0100 +++ new/katomic-19.04.0/po/zh_TW/katomic.po 2019-04-12 02:08:52.000000000 +0200 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: katomic\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2018-11-12 06:51+0100\n" +"POT-Creation-Date: 2018-08-16 09:07+0200\n" "PO-Revision-Date: 2010-08-29 14:26+0800\n" "Last-Translator: Franklin Weng <[email protected]>\n" "Language-Team: Chinese Traditional <[email protected]>\n" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/toplevel.cpp new/katomic-19.04.0/toplevel.cpp --- old/katomic-18.12.3/toplevel.cpp 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/toplevel.cpp 2019-02-27 08:05:18.000000000 +0100 @@ -44,7 +44,7 @@ { QString lastPlayedLevelSet = Preferences::lastPlayedLevelSet(); if (lastPlayedLevelSet.isEmpty()) - lastPlayedLevelSet = DEFAULT_LEVELSET_NAME; + lastPlayedLevelSet = QStringLiteral(DEFAULT_LEVELSET_NAME); m_gameWid = new GameWidget( lastPlayedLevelSet, this); m_gameWid->setObjectName( QStringLiteral("gamewidget" )); @@ -104,14 +104,14 @@ m_prevLevelAct->setText( i18n( "Previous Level" ) ); actionCollection()->setDefaultShortcut(m_prevLevelAct, Qt::CTRL + Qt::Key_P ); addAction( m_prevLevelAct ); - connect( m_prevLevelAct, SIGNAL(triggered(bool)), m_gameWid, SLOT(prevLevel()) ); + connect( m_prevLevelAct, &QAction::triggered, m_gameWid, &GameWidget::prevLevel ); m_nextLevelAct = actionCollection()->addAction( QStringLiteral( "next_level" ) ); m_nextLevelAct->setIcon( QIcon::fromTheme( QStringLiteral( "arrow-right" ) ) ); m_nextLevelAct->setText( i18n( "Next Level" ) ); actionCollection()->setDefaultShortcut(m_nextLevelAct, Qt::CTRL + Qt::Key_N ); addAction( m_nextLevelAct ); - connect( m_nextLevelAct, SIGNAL(triggered(bool)), m_gameWid, SLOT(nextLevel()) ); + connect( m_nextLevelAct, &QAction::triggered, m_gameWid, &GameWidget::nextLevel ); QAction* chooseLevelSet = actionCollection()->addAction( QStringLiteral( "choose_level_set" ) ); chooseLevelSet->setText( i18n( "Choose level set..." ) ); @@ -128,22 +128,22 @@ QAction *undoAll = actionCollection()->addAction( QStringLiteral( "move_undo_all" ) ); undoAll->setIcon( QIcon::fromTheme( QStringLiteral( "media-skip-backward" )) ); undoAll->setText( i18n("Undo All") ); - connect( undoAll, SIGNAL(triggered(bool)), m_gameWid->playfield(), SLOT(undoAll()) ); + connect( undoAll, &QAction::triggered, m_gameWid->playfield(), &PlayField::undoAll ); QAction *redoAll = actionCollection()->addAction( QStringLiteral( "move_redo_all" ) ); redoAll->setIcon( QIcon::fromTheme( QStringLiteral( "media-skip-forward" )) ); redoAll->setText( i18n("Redo All") ); - connect( redoAll, SIGNAL(triggered(bool)), m_gameWid->playfield(), SLOT(redoAll()) ); + connect( redoAll, &QAction::triggered, m_gameWid->playfield(), &PlayField::redoAll ); m_undoAct->setEnabled(false); m_redoAct->setEnabled(false); undoAll->setEnabled(false); redoAll->setEnabled(false); - connect (m_gameWid->playfield(), SIGNAL (enableRedo(bool)), m_redoAct, SLOT(setEnabled(bool))); - connect (m_gameWid->playfield(), SIGNAL (enableUndo(bool)), m_undoAct, SLOT(setEnabled(bool))); - connect (m_gameWid->playfield(), SIGNAL (enableUndo(bool)), undoAll, SLOT(setEnabled(bool))); - connect (m_gameWid->playfield(), SIGNAL (enableRedo(bool)), redoAll, SLOT(setEnabled(bool))); + connect (m_gameWid->playfield(), &PlayField::enableRedo, m_redoAct, &QAction::setEnabled); + connect (m_gameWid->playfield(), &PlayField::enableUndo, m_undoAct, &QAction::setEnabled); + connect (m_gameWid->playfield(), &PlayField::enableUndo, undoAll, &QAction::setEnabled); + connect (m_gameWid->playfield(), &PlayField::enableRedo, redoAll, &QAction::setEnabled); QAction * atomUpAct = actionCollection()->addAction( QStringLiteral( "atom_up" )); atomUpAct->setText(i18n("Atom Up")); @@ -173,13 +173,13 @@ nextAtomAct->setText(i18n("Next Atom")); actionCollection()->setDefaultShortcut(nextAtomAct,Qt::Key_Tab); addAction(nextAtomAct); - connect(nextAtomAct, SIGNAL(triggered(bool)), m_gameWid->playfield(), SLOT(nextAtom())); + connect(nextAtomAct, &QAction::triggered, m_gameWid->playfield(), &PlayField::nextAtom); QAction * prevAtomAct = actionCollection()->addAction( QStringLiteral( "prev_atom" )); prevAtomAct->setText(i18n("Previous Atom")); actionCollection()->setDefaultShortcut(prevAtomAct,Qt::SHIFT+Qt::Key_Tab); addAction(prevAtomAct); - connect(prevAtomAct, SIGNAL(triggered(bool)), m_gameWid->playfield(), SLOT(previousAtom())); + connect(prevAtomAct, &QAction::triggered, m_gameWid->playfield(), &PlayField::previousAtom); } void AtomTopLevel::loadSettings() @@ -201,7 +201,7 @@ mCurrentScore->setText(i18n("Current score: %1", score)); QString str; if(highscore == 0) - str = '-'; + str = QLatin1Char('-'); else str.setNum(highscore); mHighScore->setText(i18n("Highscore: %1", str)); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/katomic-18.12.3/toplevel.h new/katomic-19.04.0/toplevel.h --- old/katomic-18.12.3/toplevel.h 2019-01-19 07:19:03.000000000 +0100 +++ new/katomic-19.04.0/toplevel.h 2019-02-27 08:05:18.000000000 +0100 @@ -48,7 +48,7 @@ * May enable some other "hacks" in future (if any will emerge) */ void enableHackMode(); -private slots: +private Q_SLOTS: void slotAnimSpeedChanged(int); void updateStatusBar(int level, int score, int highscore); void levelHasChanged(int level);
