exec出现段错误后更新主窗口标题

时间:2019-10-09 13:28:57

标签: c++ windows qt

如果在main.cpp中调用a.exec()后调用MainWindow函数setWindowTitle,则会出现段错误(C000 0005)。 gui运行后,是否有任何方法可以更改窗口标题。我不相信这是WIN 10的限制,因为我可以使用tkinter在python中做到这一点。我正在使用qtcreator,但没有QML表单。

2 个答案:

答案 0 :(得分:0)

我的问题是由于尝试通过MainWindow函数使用指向主窗口的指针引起的。实际上,当我实际上在另一个类中调用一个函数时,这更加令人费解。解决方法是将此this指针传递给另一个类中的函数。

答案 1 :(得分:0)

您最有可能尝试使用MainWindow的已销毁实例。您可能错误地在窗口上设置了QT_WADeleteOnClose属性。下面的独立示例演示了此问题。该属性可能在.ui文件中设置,您可能没有意识到。

screenshot of the example application

// https://github.com/KubaO/stackoverflown/tree/master/questions/mainwindow-crash-double-delete-58305305
#include <QtWidgets>

class Window : public QMainWindow {
   QWidget central;
   QGridLayout layout{&central};
   QLabel label{"Hello, World!"};
   QCheckBox crash{"Crash on exit"};
public:
   static bool alive;
   Window() {
      alive = true;
      layout.addWidget(&label, 0, 0);
      layout.addWidget(&crash, 1, 0);
      setCentralWidget(&central);
      connect(&crash, &QCheckBox::toggled, this, [this](){
         setAttribute(Qt::WA_DeleteOnClose, crash.isChecked());
      });
   }
   ~Window() {
      qDebug() << __FUNCTION__;
      alive = false;
   }
};
bool Window::alive;

int main(int argc, char *argv[])
{
   QApplication a(argc, argv);
   int rc;
   {
      Window w;
      w.show();
      rc = a.exec();
      Q_ASSERT(w.alive);
      w.setWindowTitle("A New Title Awaits");
      qDebug() << "We're past w.setWindowTitle()";
   }
   return rc;
}