Hi All,
I want to pass a member funtion of my QWidget class to constructor of my QDialog subclass.
example :
class popup : public QDialog,private Ui:opup
{
Q_OBJECT
public:
popup(QWidget *parent,void (Widget::*)(QString &));
~popup();
};
I get the following error on compilation
error: no matching function for call to ‘popup:opup(Widget* const, <unresolved overloaded function type>)’
Kindly help in fixing these issue.
Ratheendran
Bookmarks