void C_Classe::Slot_APropos() { QString pathExeAPropos = CGestIni::Construct_Name_Exe("APropos",QFileInfo (qApp->argv()[0]).path()); QStringList argList; //....... renseigner arguments ......... argList << "Manager"; // 1 nom du module argList << tr("Module de gestion de l'agenda et de la liste des patients"); // 2 description courte argList << NUM_VERSION; // 3 numero de version argList << G_pCApp->m_PathAppli+"Ressources/Changements.html"; // 4 fichiers des changements argList << G_pCApp->m_PathAppli+"Ressources/Icone.png"; // 5 fichiers icone QProcess proc; proc.start(pathExeAPropos, argList); proc.waitForStarted (-1); proc.waitForFinished (-1); }