
Originally Posted by
Krishnacins
Hi,
This program is working with Qt3 (fedora c2)but its not working with Qt4 (fedora c2)
StartAlarm()
{
Q3Process *AlarmProcess;
AlarmProcess = new Q3Process (this);
AlarmProcess->setArguments("playwave"); // the player
if(rcCheckSound->isChecked() == 1)
AlarmProcess->addArgument(leFile->text() );
else
AlarmProcess->addArgument("1.wav");
AlarmProcess->start();
}
Plz help me i didnt do much work with qt.....
Thanks
Krishna
????????????????????
Q3Process, like QProcess in Qt3.x don't have a member
setArguments(const QString&)
setArguments(const QString&)
To copy to clipboard, switch view to plain text mode
but have
setArguments(const QStringList&)
addArgument(const QString&)
setArguments(const QStringList&)
addArgument(const QString&)
To copy to clipboard, switch view to plain text mode
This code really compile and work with QT3?????
Bookmarks