The on
prefix should be used for slots, rather than signals. Also, let's not use const
for parameters passed by value. Combined, it can look like this:
void osdActiveChanged(bool active);
The on
prefix should be used for slots, rather than signals. Also, let's not use const
for parameters passed by value. Combined, it can look like this:
void osdActiveChanged(bool active);