File indexing completed on 2024-11-17 04:55:36
0001 /* 0002 * SPDX-FileCopyrightText: 2013 Lukas Appelhans <l.appelhans@gmx.de> 0003 * 0004 * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0005 */ 0006 #include "DummyNotifier.h" 0007 0008 #include <QDebug> 0009 0010 DummyNotifier::DummyNotifier(QObject *parent) 0011 : BackendNotifierModule(parent) 0012 { 0013 } 0014 0015 DummyNotifier::~DummyNotifier() 0016 { 0017 } 0018 0019 void DummyNotifier::recheckSystemUpdateNeeded() 0020 { 0021 Q_EMIT foundUpdates(); 0022 }