I am a total newbie to Qt. As I was reading the documentation, I came across this configuration:
connect( Object1, Signal1, Object2, slot1 )
connect( Object1, Signal1, Object2, slot2 )
What could possibly be the use-case for this?
Looks odd to me coming from an Erlang/Python background. It must have to do with C++ inheritance twists and turns I guess.