hi..
i was just guessing that if there is any mechanism available in qt through which single signal can emit different slots just with a single statement..
Qt Code:
  1. connect(navigate,SIGNAL(recordClicked()),navigate,SLOT(disableRecordButton()));
  2. connect(navigate,SIGNAL(recordClicked()),progress,SLOT(startProgress()));
To copy to clipboard, switch view to plain text mode 
can this work be done by single statement