Skip to content
Snippets Groups Projects
Commit 5346b2b4 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Use new signal/slot connect

parent f0279442
No related branches found
No related tags found
No related merge requests found
......@@ -316,7 +316,7 @@ namespace armarx
QPushButton* button = new QPushButton {"Create"};
headerW->layout()->addWidget(button);
button->setToolTip("Create a new controller instance of this class");
connect(button, SIGNAL(clicked(bool)), this, SLOT(createCtrl()));
connect(button, &QPushButton::clicked, this, &NJointControllerClassesWidgetEntry::createCtrl);
}
//descr
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment