为什么我的hello出问题,我在#qmake-project #qmake #make都没有提示错误,但是在生成可执行hello后,我运行./hello
结果提示:
Session management error:Authentication Rejected.None of the authentication protocols specified are supported and host-based authentication failed
我就不明白错在哪里,另外我是装QT3 操作系统是redhat9 2.4.20
请大侠指教,不胜感激~~!!
贴上原程序:#include<qapplication.h>
#incldue<qlabel.h>
int main(int argc,char **argv)
{
QAppliaction app(argc,argv);
QLabel *hello=new QLabel(“hello Qt/Embedded !”,0);
app.setMainWidget(hello);
hello->show();
return app.exec();
}