C:\Users\30358\Documents\untitled5\widget.cpp:84: error: 'class QAbstractItemModel' has no member named 'horizontalHeaderItem' qInfo() << model->horizontalHeaderItem(i)->text(); ^
时间: 2024-04-18 08:33:10 浏览: 80
untitled2_QWeb_QTqwebengine加载网页_htts://www.2qt5.com_www.2qt5.com
这个错误可能是因为您正在尝试在QAbstractItemModel类的对象上调用horizontalHeaderItem()函数,但QAbstractItemModel类本身没有该成员函数。您可能需要使用QTableView或QTreeView等继承自QAbstractItemView的类,以便访问horizontalHeaderItem()函数。请检查您的代码,并确保您正在使用正确的类和函数。
阅读全文