我开发了一个程序,我有10个备份。我添加了一些行,当我编译项目时,它现在有以下错误:
C:\Qt\Qt5.0.1\5.0.1\mingw47_32\include\QtWidgets\qtabwidget.h:173: error: 'QTabWidget::QTabWidget(const QTabWidget&)' is private
错误来自* line
namespace Ui {
class ContentControl;
}
class ContentControl : public QTabWidget // * from this line
{
Q_OBJECT
public:
.
.
.
}
现在所有备份都有此错误。知道为什么吗?我重新安装了Qt,但问题仍然存在。
答案 0 :(得分:1)
您无法创建QTabWidget
对象的副本。在代码的某处,您正在调用QTabWidget
的复制构造函数,这是不允许的,因为它在Qt源代码中被声明为私有。