~neon/ksirk/master

« back to all changes in this revision

Viewing changes to ksirk/iris/src/irisnet/corelib/objectsession.cpp

  • Committer: Laurent Montel
  • Date: 2019-01-11 12:25:11 UTC
  • Revision ID: git-v1:a8fedc255708e7a8fb16d6852e894517e0974cd3
Fix some clazy warning

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
                paused(false)
134
134
        {
135
135
                callTrigger = new QTimer(this);
136
 
                connect(callTrigger, SIGNAL(timeout()), SLOT(doCall()));
 
136
                connect(callTrigger, &QTimer::timeout, this, &ObjectSessionPrivate::doCall);
137
137
                callTrigger->setSingleShot(true);
138
138
        }
139
139