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..
connect(navigate,SIGNAL(recordClicked()),navigate,SLOT(disableRecordButton()));
connect(navigate,SIGNAL(recordClicked()),progress,SLOT(startProgress()));
connect(navigate,SIGNAL(recordClicked()),navigate,SLOT(disableRecordButton()));
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
Bookmarks