forked from matinlotfali/KDE-Rounded-Corners
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
22 lines (18 loc) · 773 Bytes
/
main.cpp
File metadata and controls
22 lines (18 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "shapecorners.h"
namespace KWin
{
Q_NAMESPACE
#if KWIN_EFFECT_API_VERSION < 233
KWIN_EFFECT_FACTORY_SUPPORTED_ENABLED( ShapeCornersFactory,
ShapeCornersEffect,
"shapecorners.json",
return ShapeCornersEffect::supported();,
return ShapeCornersEffect::enabledByDefault();)
#else
KWIN_EFFECT_FACTORY_SUPPORTED_ENABLED( ShapeCornersEffect,
"shapecorners.json",
return ShapeCornersEffect::supported();,
return ShapeCornersEffect::enabledByDefault();)
#endif
}
#include "main.moc"