solid: remove unused SOLID_CALL() macro

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2024-05-10 09:14:09 +03:00
parent 5338c9f8e0
commit b46e8b1170

View file

@ -34,13 +34,4 @@
return Default; \
}
#define SOLID_CALL(Type, Object, Method) \
Type t = qobject_cast<Type>(Object); \
if (t!=0) \
{ \
t->Method; \
}
#endif