Reduce includes

This commit is contained in:
Jonas Kvinge
2020-02-09 02:29:35 +01:00
parent 84cd65dd6c
commit 1851f26e3f
284 changed files with 742 additions and 665 deletions

View File

@@ -27,7 +27,6 @@
#include <QLabel>
#include <QSizePolicy>
#include <QBoxLayout>
#include <QtEvents>
#include "busyindicator.h"
@@ -70,11 +69,11 @@ BusyIndicator::~BusyIndicator() {
delete movie_;
}
void BusyIndicator::showEvent(QShowEvent *) {
void BusyIndicator::showEvent(QShowEvent*) {
movie_->start();
}
void BusyIndicator::hideEvent(QHideEvent *) {
void BusyIndicator::hideEvent(QHideEvent*) {
movie_->stop();
}