The Title Says it all... "Object::connect: No such signal QRadioButton::toggled()"

I was looking through the docs on QRadioButton and it inherits:
void QAbstractButton::toggled ( bool checked ) [signal]

So I tried to create the following connection like so:
Qt Code:
  1. ...
  2. connect(ui.rbManualMode, SIGNAL(toggled()), this, SLOT(toggleManualTab()));
  3. }
  4.  
  5. void ConfigurationForm::toggleManualTab()
  6. {
  7. bool bEnableTab = ui.rbManualMode->isChecked();
  8.  
  9. ui.twConfig->setTabEnabled( 1, bEnableTab );
  10. }
To copy to clipboard, switch view to plain text mode 

I am trying to enable / dissable a tab based on a radio button choice. For some reason it can not send a toggled() signal. I must be missing something fundemental here because it seems too easy to mess up.