当前位置: 技术问答>linux和unix
这样的编译错误该如何处理?
来源: 互联网 发布时间:2015-02-09
本文导语: Error:attempt to add non-widget child "DropSiteManager" to parent "question" which supports only widgets question:我的应用程序名。 我的系统环境:RedHat Linux 7.2 ,基于Motif1.2的编程. 出错代码: ... 1、main_w = XmCreateMainWind...
Error:attempt to add non-widget child "DropSiteManager" to parent "question" which supports only widgets
question:我的应用程序名。
我的系统环境:RedHat Linux 7.2 ,基于Motif1.2的编程.
出错代码:
...
1、main_w = XmCreateMainWindow(toplevel,"main_w",NULL,0);
....
2、menubar = XmVaCreateSimpleMenuBar(main_w,"main_w",...);
....
我用gdb调试时,错误发生在2上。
不知怎样才能add non-widget to main_w?
因为我是新手,不明白这些关系,希望大家关注。谢谢!
question:我的应用程序名。
我的系统环境:RedHat Linux 7.2 ,基于Motif1.2的编程.
出错代码:
...
1、main_w = XmCreateMainWindow(toplevel,"main_w",NULL,0);
....
2、menubar = XmVaCreateSimpleMenuBar(main_w,"main_w",...);
....
我用gdb调试时,错误发生在2上。
不知怎样才能add non-widget to main_w?
因为我是新手,不明白这些关系,希望大家关注。谢谢!
|
应该不是那一句出错,出错原因可能是你在parent "question" which supports only widgets里面加了一个gadget.
另外XmVaCreateSimpleMenuBar只有两个参数,你的“...”是什么意思?
Widget XmVaCreateSimpleMenuBar(Widget parent,String name);
另外XmVaCreateSimpleMenuBar只有两个参数,你的“...”是什么意思?
Widget XmVaCreateSimpleMenuBar(Widget parent,String name);
|
到底是编译错误还是运行错误啊