Gtk::MessageDialog Run 抛出分段错误
您好,我正在尝试使用对话框显示错误消息。但是,当我运行代码时,我遇到分段错误。
这是功能:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否必须在对话框上调用
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.
也许你一开始就没有添加这一行?
maybe you did not added this line at the begining?