Fix minor coding style issues

The coding style guidelines recommend to keep line width under 100
characters if possible.
icc-effect-5.26.4
Vlad Zahorodnii 2020-12-21 20:21:33 +02:00
parent eaf94f465c
commit 8b03fc9e07
1 changed files with 6 additions and 3 deletions

View File

@ -27,9 +27,12 @@ ColorManager::ColorManager(QObject *parent)
: QObject(parent)
, d(new ColorManagerPrivate)
{
connect(kwinApp()->platform(), &Platform::outputEnabled, this, &ColorManager::handleOutputEnabled);
connect(kwinApp()->platform(), &Platform::outputDisabled, this, &ColorManager::handleOutputDisabled);
connect(LogindIntegration::self(), &LogindIntegration::sessionActiveChanged, this, &ColorManager::handleSessionActiveChanged);
connect(kwinApp()->platform(), &Platform::outputEnabled,
this, &ColorManager::handleOutputEnabled);
connect(kwinApp()->platform(), &Platform::outputDisabled,
this, &ColorManager::handleOutputDisabled);
connect(LogindIntegration::self(), &LogindIntegration::sessionActiveChanged,
this, &ColorManager::handleSessionActiveChanged);
}
ColorManager::~ColorManager()