default to OfonoWrapperUbuntu

This commit is contained in:
Marco Martin 2015-05-19 19:10:04 +02:00
parent b01da75aa1
commit b4823d8c7b
2 changed files with 3 additions and 6 deletions

View file

@ -42,7 +42,7 @@ Item {
property int duration: callManager.foregroundCall ? callManager.foregroundCall.elapsedTime : 0 property int duration: callManager.foregroundCall ? callManager.foregroundCall.elapsedTime : 0
//microphone muted? //microphone muted?
property alias isMicrophoneMuted: callManager.muted property bool isMicrophoneMuted: callManager.muted
//END PROPERTIES //END PROPERTIES
//BEGIN SIGNAL HANDLERS //BEGIN SIGNAL HANDLERS
@ -114,6 +114,7 @@ Item {
property int previousStatus property int previousStatus
onCallsChanged: { onCallsChanged: {
print("AAA")
//STATUS_INCOMING //STATUS_INCOMING
if (callManager.foregroundCall.ringing || callManager.foregroundCall.incoming) { if (callManager.foregroundCall.ringing || callManager.foregroundCall.incoming) {
wasVisible = root.visible; wasVisible = root.visible;
@ -145,10 +146,6 @@ Item {
previousStatus = root.status; previousStatus = root.status;
} }
onError: {
console.log('*** QML *** VCM ERROR: ' + message);
}
} }
//END MODELS //END MODELS

View file

@ -143,7 +143,7 @@ ApplicationWindow {
id: historyModel id: historyModel
} }
OfonoWrapper { OfonoWrapperUbuntu {
id: ofonoWrapper id: ofonoWrapper
} }