mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 10:46:35 +01:00
AutoSaver: Save when app is about to quit
Fixes changes not being saved in classes where saving is done in destructor, like SpeedDial.
This commit is contained in:
parent
30f5cd2d7e
commit
82a9c398a6
@ -18,12 +18,14 @@
|
||||
#include "autosaver.h"
|
||||
|
||||
#include <QTimerEvent>
|
||||
#include <QCoreApplication>
|
||||
|
||||
#define SAVE_DELAY 1000 * 10 // 10 seconds
|
||||
|
||||
AutoSaver::AutoSaver(QObject* parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
connect(qApp, &QCoreApplication::aboutToQuit, this, &AutoSaver::saveIfNecessary);
|
||||
}
|
||||
|
||||
void AutoSaver::saveIfNecessary()
|
||||
|
Loading…
Reference in New Issue
Block a user