summaryrefslogtreecommitdiff
path: root/daemon/voicecallhandler.h
diff options
context:
space:
mode:
authorPhilipp Andreas <github@smurfy.de>2014-10-28 21:30:15 +0100
committerPhilipp Andreas <github@smurfy.de>2014-10-28 21:30:15 +0100
commit763f16d504ab9667679aebdb461a0d365708938b (patch)
tree251f528d92905eff26c7117582b777dc7e7d28b9 /daemon/voicecallhandler.h
parentb30c991f3fa5f196cfb7bf46eb784169c9b2eb74 (diff)
Fix for update9 dbus changes.
Diffstat (limited to 'daemon/voicecallhandler.h')
-rw-r--r--daemon/voicecallhandler.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/daemon/voicecallhandler.h b/daemon/voicecallhandler.h
index 4ad0157..f7fbb8b 100644
--- a/daemon/voicecallhandler.h
+++ b/daemon/voicecallhandler.h
@@ -74,13 +74,13 @@ protected Q_SLOTS:
bool getProperties();
void onPendingCallFinished(QDBusPendingCallWatcher *watcher);
- void onDurationChanged();
- void onStatusChanged();
- void onLineIdChanged();
- void onStartedAtChanged();
- void onEmergencyChanged();
- void onMultipartyChanged();
- void onForwardedChanged();
+ void onDurationChanged(int duration);
+ void onStatusChanged(int status, QString statusText);
+ void onLineIdChanged(QString lineId);
+ void onStartedAtChanged(const QDateTime &startedAt);
+ void onEmergencyChanged(bool isEmergency);
+ void onMultipartyChanged(bool isMultiparty);
+ void onForwardedChanged(bool isForwarded);
private:
class VoiceCallHandlerPrivate *d_ptr;