I'm using Qt 4.8.x so I don't have access to the new connect
interface from Qt5, but I want to be alerted better when a signal/slot connection fails because I misspelled a signal or slot name.
Currently, all Qt does is spit out an error message when the connection is attempted. However, my program has a lot of output on stdout
so it is easy to miss these errors sometimes. Is it possible to force my application to crash via assert, segfault, or other method, when a connect statement fails?