Hi!

In my app defined signal with signature:

enum MsgTypes
{
mtUnknown =0,
mtError,
mtUser
};

class MyClass
{
signals:
void onMessage(QString text, int msgType); //working, signal catched in my app
void onMessage1(QString text, MsgTypes msgType); //bad, not working, signal is not catched in my app
};

how to make signal with user types will be worked