Quote Originally Posted by L.Marvell
So isn't it has to be [...]
Not with current toggleManualTab() implementation, since it doesn't take any arguments.

With:
Qt Code:
  1. connect( ui.rbManualMode, SIGNAL( toggled( bool ) ),
  2. this, SLOT( toggleManualTab( bool ) ) );
To copy to clipboard, switch view to plain text mode 
that slot should look like this:
Qt Code:
  1. void ConfigurationForm::toggleManualTab( bool bEnableTab )
  2. {
  3. ui.twConfig->setTabEnabled( 1, bEnableTab );
  4. }
To copy to clipboard, switch view to plain text mode 

@bpetty:
If you have similar slots for other tabs, consider using QSignalMapper.