~ken-vandine/libqofono/0.90-suggests

« back to all changes in this revision

Viewing changes to src/qofonocallsettings.h

  • Committer: Lorn Potter
  • Date: 2013-05-24 06:31:37 UTC
  • Revision ID: git-v1:f1fb2c7210b19ba47a1ecbe83d55a7cf15218f23
[libqofono] add modemPathChanged signals

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
class QOFONOSHARED_EXPORT QOfonoCallSettings : public QObject
31
31
{
32
32
    Q_OBJECT
33
 
    Q_PROPERTY(QString modemPath READ modemPath WRITE setModemPath)
 
33
    Q_PROPERTY(QString modemPath READ modemPath WRITE setModemPath NOTIFY modemPathChanged)
34
34
 
35
35
 
36
36
public:
64
64
    void callingLineRestrictionChanged(const QString &setting);
65
65
    void hideCallerIdChanged(const QString &setting);
66
66
    void voiceCallWaitingChanged(const QString &setting);
 
67
    void modemPathChanged(const QString &path);
67
68
 
68
69
public slots:
69
70