0

我开发了一个程序,我有 10 个备份。我在其中添加了一些行,当我编译项目时,现在它有以下错误:

C:\Qt\Qt5.0.1\5.0.1\mingw47_32\include\QtWidgets\qtabwidget.h:173: error: 'QTabWidget::QTabWidget(const QTabWidget&)' is private

错误来自 * 行

namespace Ui {
  class ContentControl;
}

class ContentControl : public QTabWidget // * from this line
{
    Q_OBJECT

public:
.
.
.
}

现在所有备份都有这个错误。知道为什么吗?我重新安装了 Qt,但问题仍然存在。

4

1 回答 1

1

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

于 2013-06-24T21:20:57.913 回答