我正在尝试检测用户双击qtablewidget中的标头的时间。为此,我将信号“sectionDoubleClicked(int)”连接到具有相同参数的函数(我从1获得此信息)。我的问题是我收到以下编译时错误:
mainwindow.cpp:117: error: no matching function for call to âMainWindow::connect(QHeaderView*, const char [27], MainWindow* const, const char [24])â
/usr/lib64/qt4/include/QtCore/qobject.h:181: note: candidates are: static bool QObject::connect(const QObject*, const char*, const QObject*, const char*, Qt::ConnectionType)
/usr/lib64/qt4/include/QtCore/qobject.h:282: note: bool QObject::connect(const QObject*, const char*, const char*, Qt::ConnectionType) const
这是我的代码:
QObject::connect(ui->table_results->horizontalHeader(),SIGNAL(sectionDoubleClicked(int)),
this,SIGNAL(headerclickedscan(int)));
我只需要将horizontalHeader()的结果转换为QObject *?
答案 0 :(得分:0)
你要么没有包含QHeaderView
#include <QHeaderView>
或未在MainWindow类中声明“headerclickedscan(int)”作为信号。
您是否确定要将“headerclickedscan(int)”作为信号而不是插槽?