Dear Friends

I want to open a terminal in LINUX from within QT application !
I am trying this through QProcess
///////////////////////////////////////////////////////////////////////////
QProcess process(this);
process.setWorkingDirectory("./Grid/");
process.start("gedit gcf.dat");

/////////////////////////////////////////////////////////////////////////////

But I can't see any file is opening for editing in LINUX...What am I missing in this !

Any help would be greatly appreciated !