summaryrefslogtreecommitdiffstats
path: root/core/settings/qPrefAnimations.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/settings/qPrefAnimations.cpp')
-rw-r--r--core/settings/qPrefAnimations.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/core/settings/qPrefAnimations.cpp b/core/settings/qPrefAnimations.cpp
deleted file mode 100644
index ca1980210..000000000
--- a/core/settings/qPrefAnimations.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-#include "qPrefAnimations.h"
-#include "qPrefPrivate.h"
-
-static const QString group = QStringLiteral("Animations");
-
-qPrefAnimations::qPrefAnimations(QObject *parent) : QObject(parent)
-{
-}
-qPrefAnimations *qPrefAnimations::instance()
-{
- static qPrefAnimations *self = new qPrefAnimations;
- return self;
-}
-
-void qPrefAnimations::loadSync(bool doSync)
-{
- disk_animation_speed(doSync);
-}
-
-HANDLE_PREFERENCE_INT(Animations, "/animation_speed", animation_speed);