Scott @ Zaita wrote:
Hey guys, I have looked at the porting guide which recommends.object.clicked.connect(SigC::slot(this,>KAppWindow::activation_proxy::activate));be changed toobject.signal_clicked.connect(sigc::slot(*this,>KAppWindow::activation_proxy::activate));However, I get a template error on this. Would:object.signal_clicked.connect(sigc::mem_fun(*this,>KAppWindow::activation_proxy::activate));Achieve the same result? Regards, Scott
Yes, sigc::mem_fun() is the function you should use