错误:'QTabWidget :: QTabWidget(const QTabWidget&)'是私有的

时间:2013-06-23 05:17:56

标签: c++ qt qt4 qt5 qtabwidget

我开发了一个程序,我有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,但问题仍然存在。

1 个答案:

答案 0 :(得分:1)

您无法创建QTabWidget对象的副本。在代码的某处,您正在调用QTabWidget的复制构造函数,这是不允许的,因为它在Qt源代码中被声明为私有。