当我关闭应用程序时,以下示例代码因此错误而崩溃:
QBasicTimer::start: QBasicTimer can only be used with threads started with QThread
这是我的代码:
import sys
from PyQt4 import QtGui ,QtCore
app = QtGui.QApplication(sys.argv)
data=[]
data.append("one")
model=QtGui.QStringListModel(data)
combobox=QtGui.QComboBox()
combobox.show()
combobox.setModel(model)
sys.exit(app.exec_())
我发现这是关于使用模型,但我不知道如何修复它。
编辑:操作系统:win 7 64bit pyqt4