On Tuesday 03 November 2015 17:23:04 Jason H wrote:
> Didn't I already do that? Here it is again:

Sorry, you did.

> class EncryptingNetworkManager: public QNetworkAccessManager {
> public:
>       EncryptingNetworkManager(QObject *parent = 0) :
> QNetworkAccessManager(parent){}
> 
> protected slots:
>       QStringList supportedSchemesImplementation() const { // const or not it
> does not work QStringList schemes;
>               schemes.push_back("aes");
>               return schemes;
>       }
> };

You forgot the Q_OBJECT  macro.
-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to