Gtk::MessageDialog Run 抛出分段错误

发布于 2024-08-19 17:00:27 字数 280 浏览 2 评论 0原文

您好,我正在尝试使用对话框显示错误消息。但是,当我运行代码时,我遇到分段错误。

这是功能:

void ShowErrorMessage(string message)
{
  Gtk::MessageDialog dialog(message,true,Gtk::MESSAGE_ERROR,Gtk::BUTTONS_CLOSE,true);
  dialog.run();
}

我尝试打开一个文件,如果该文件无法打开,我想显示此错误框,但是我一直遇到分段错误。

Hi I'm trying to show an error mesaage using a dialogbox. However when I run the code I get segmentation fault.

Here's the function:

void ShowErrorMessage(string message)
{
  Gtk::MessageDialog dialog(message,true,Gtk::MESSAGE_ERROR,Gtk::BUTTONS_CLOSE,true);
  dialog.run();
}

I try to open a file, if the file can not be open I wanna show this error box, however i keep running into segmentation fault.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ゃ懵逼小萝莉 2024-08-26 17:00:27

您是否必须在对话框上调用 new 还是这是一个静态类?有关于此的文档,请参阅此处,这让我思考这就是为什么你的代码出现段错误......

希望这有帮助,
此致,
汤姆.

Do you have to call new on the dialog or is that a static class? See here for the document on this, which is leading me to think that's why your code segfaults...

Hope this helps,
Best regards,
Tom.

乖乖公主 2024-08-26 17:00:27

也许你一开始就没有添加这一行?

Gtk::Main_kit(argc, argv);

maybe you did not added this line at the begining?

Gtk::Main_kit(argc, argv);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文