Home · All Namespaces · All Classes · Main Classes · Grouped Classes · Modules · Functions |
The following class members are part of the Qt 3 support layer. They are provided to help you port old code to Qt 4. We advise against using them in new code.
Constructs a QSound object from the file specified by the given filename and with the given parent and name. Use the QSound() construcor and QObject::setObjectName() instead.
For example, if you have code like
QSound *mySound = new QSound(filename, parent, name);
you can rewrite it as
QSounc *mySound = new QSound(filename, parent); mySound->setObjectName(name);
Use the isAvailable() function instead.
Copyright © 2008 Nokia | Trademarks | Qt 4.4.3 |