The following code fragment gives the compilation error
call of overloaded ‘QString(int)’ is ambiguous with qt 4.7.3
(system is linux 64bit, debian unstable)
struct QSAConnection
{
QSAConnection() : sender(0), signal(0), function_ref() { }
QSAConnection(QObject *send, const char *sig, QSObject ref)
: sender(send), signal(QLatin1String(sig)), function_ref(ref) { }
QObject *sender;
QString signal;
QSObject function_ref;
};
Any tips?
