[Plasma Theme] Use new connect syntax
Saves some cycles Differential Revision: https://phabricator.kde.org/D18356
This commit is contained in:
parent
eac69e0469
commit
8c50991407
@ -59,8 +59,8 @@ Theme::Theme(QObject *parent)
|
|||||||
|
|
||||||
d->settingsChanged(false);
|
d->settingsChanged(false);
|
||||||
if (QCoreApplication::instance()) {
|
if (QCoreApplication::instance()) {
|
||||||
connect(QCoreApplication::instance(), SIGNAL(aboutToQuit()),
|
connect(QCoreApplication::instance(), &QCoreApplication::aboutToQuit,
|
||||||
d, SLOT(onAppExitCleanup()));
|
d, &ThemePrivate::onAppExitCleanup);
|
||||||
}
|
}
|
||||||
connect(d, &ThemePrivate::themeChanged, this, &Theme::themeChanged);
|
connect(d, &ThemePrivate::themeChanged, this, &Theme::themeChanged);
|
||||||
connect(d, &ThemePrivate::defaultFontChanged, this, &Theme::defaultFontChanged);
|
connect(d, &ThemePrivate::defaultFontChanged, this, &Theme::defaultFontChanged);
|
||||||
@ -85,8 +85,8 @@ Theme::Theme(const QString &themeName, QObject *parent)
|
|||||||
d->cacheTheme = useCache;
|
d->cacheTheme = useCache;
|
||||||
d->fixedName = true;
|
d->fixedName = true;
|
||||||
if (QCoreApplication::instance()) {
|
if (QCoreApplication::instance()) {
|
||||||
connect(QCoreApplication::instance(), SIGNAL(aboutToQuit()),
|
connect(QCoreApplication::instance(), &QCoreApplication::aboutToQuit,
|
||||||
d, SLOT(onAppExitCleanup()));
|
d, &ThemePrivate::onAppExitCleanup);
|
||||||
}
|
}
|
||||||
connect(d, &ThemePrivate::themeChanged, this, &Theme::themeChanged);
|
connect(d, &ThemePrivate::themeChanged, this, &Theme::themeChanged);
|
||||||
}
|
}
|
||||||
@ -131,8 +131,8 @@ void Theme::setThemeName(const QString &themeName)
|
|||||||
ThemePrivate::themesRefCount[themeName].ref();
|
ThemePrivate::themesRefCount[themeName].ref();
|
||||||
d = ThemePrivate::themes[themeName];
|
d = ThemePrivate::themes[themeName];
|
||||||
if (QCoreApplication::instance()) {
|
if (QCoreApplication::instance()) {
|
||||||
connect(QCoreApplication::instance(), SIGNAL(aboutToQuit()),
|
connect(QCoreApplication::instance(), &QCoreApplication::aboutToQuit,
|
||||||
d, SLOT(onAppExitCleanup()));
|
d, &ThemePrivate::onAppExitCleanup);
|
||||||
}
|
}
|
||||||
connect(d, &ThemePrivate::themeChanged, this, &Theme::themeChanged);
|
connect(d, &ThemePrivate::themeChanged, this, &Theme::themeChanged);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user