Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. MAVLinkSettingsWidget::MAVLinkSettingsWidget(MAVLinkProtocol* protocol, QWidget *parent) :
  2. QWidget(parent),
  3. protocol(protocol),
  4. m_ui(new Ui::MAVLinkSettingsWidget)
  5. {
  6. m_ui->setupUi(this);
  7.  
  8. connect(m_ui->paramRewriteSpinBox, SIGNAL(valueChanged(int)), protocol, SLOT(setParamRewriteTimeout(int)));
  9. ...
  10. connect(m_ui->droneOSComboBox, SIGNAL(currentIndexChanged(QString)), this, SLOT(setDroneOSHost(QString)));
  11. ...
  12. }
  13.  
  14. a = new MAVLinkSettingsWidget(...);
  15. ...
  16. b = new MAVLinkSettingsWidget(...);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement