From: Ivailo Monev Date: Wed, 9 Dec 2020 06:29:36 +0000 (+0000) Subject: fix dummyobject and dummyanimation header guards X-Git-Tag: 4.12.0~3126 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=2c0100a37b3a2516b1fde627b62759497837b412;p=kde%2FKatie.git fix dummyobject and dummyanimation header guards Signed-off-by: Ivailo Monev --- diff --git a/tests/benchmarks/gui/animation/qanimation/dummyanimation.h b/tests/benchmarks/gui/animation/qanimation/dummyanimation.h index a6d463480..da2484a10 100644 --- a/tests/benchmarks/gui/animation/qanimation/dummyanimation.h +++ b/tests/benchmarks/gui/animation/qanimation/dummyanimation.h @@ -35,7 +35,8 @@ #include #include -#ifndef _DUMMYANIMATION_H__ +#ifndef DUMMYANIMATION_H +#define DUMMYANIMATION_H class DummyObject; diff --git a/tests/benchmarks/gui/animation/qanimation/dummyobject.h b/tests/benchmarks/gui/animation/qanimation/dummyobject.h index 1cf8f3213..83edc427b 100644 --- a/tests/benchmarks/gui/animation/qanimation/dummyobject.h +++ b/tests/benchmarks/gui/animation/qanimation/dummyobject.h @@ -33,7 +33,8 @@ #include -#ifndef _DUMMYOBJECT_H__ +#ifndef DUMMYOBJECT_H +#define DUMMYOBJECT_H class DummyObject : public QObject { @@ -52,5 +53,4 @@ private: float m_opacity; }; - #endif