예제 #1
0
void CellModemManager::newlyRegistered()
{
    QTimer::singleShot(1000, this, SLOT(setCallerIdRestriction()));
    QTimer::singleShot(5000, this, SLOT(queryCallForwarding()));
}
예제 #2
0
/*!
    Sets the caller ID restriction state to \a clir.  The service responds
    by emitting the setCallerIdRestrictionResult() signal.

    On AT-based modems, this will typically use the \c{AT+CLIR} command.

    \sa setCallerIdRestrictionResult()
*/
void QCallSettings::setCallerIdRestriction
        ( QCallSettings::CallerIdRestriction clir )
{
    invoke( SLOT(setCallerIdRestriction(QCallSettings::CallerIdRestriction)),
            qVariantFromValue( clir ) );
}