I wanted to use the following signal
Qt Code:
  1. void QNetworkAccessManager::sslErrors (QNetworkReply * reply, const QList<QSslError> & errors ) [signal]
To copy to clipboard, switch view to plain text mode 
so I wrote this
Qt Code:
  1. QObject::connect(nam, SIGNAL(sslErrors(QNetworkReply*, QList<QSslError> const &)), this, SLOT(ssl(QNetworkReply *)));
To copy to clipboard, switch view to plain text mode 
and got an error about non-existen signal... Changing above to
Qt Code:
  1. QObject::connect(nam, SIGNAL(sslErrors(QNetworkReply*, const QList<QSslError> &)), this, SLOT(ssl(QNetworkReply *)));
To copy to clipboard, switch view to plain text mode 
solved the problem.

Is this a known bug in moc?