subsurface/profile-widget/animationfunctions.h
Berthold Stoeger e7b078a7fd profile: remove unused animation functions
A few animation function are not necessary anymore.
Remove them.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2021-12-17 11:54:23 -08:00

13 lines
296 B
C++

// SPDX-License-Identifier: GPL-2.0
#ifndef ANIMATIONFUNCTIONS_H
#define ANIMATIONFUNCTIONS_H
class QObject;
namespace Animations {
void hide(QObject *obj, int speed);
void show(QObject *obj, int speed);
void scaleTo(QObject *obj, int speed, double scale);
}
#endif // ANIMATIONFUNCTIONS_H