On Donnerstag, 27. Mai 2021 13:55:01 CEST Benjamin TERRIER wrote: > On Thu, 27 May 2021 at 11:25, Allan Sandfeld Jensen <[email protected]> > > But then in my code, each time I see a CrazySSLPage I am never sure that it > will ignore SSL errors. Maybe someone called QObject::disconnect() on it. > > CrazySSLPage page; > page.disconnect(); // It's just a QWebEnginePage now
If you call disconnect on a QWebEnginePage (or most advanced Qt classes) you have bigger problems than that, we rely on that for internal stuff too. As a C++ toolkit we can not protect users from doing bad things, it is always in their power. 'Allan _______________________________________________ Development mailing list [email protected] https://lists.qt-project.org/listinfo/development
