Hi Roman!
Sorry, my fault. It should be something like this
QDBusConnection connSystemBus = QDBusConnection::systemBus();
QDBusInterface dbusPhone( "com.nokia.csd.Call", "/com/nokia/csd/call",
"com.nokia.csd.Call", connSystemBus );
QDBusMessage reply = dbusPhone.call( "CreateWith", "+4312345678
This code works for me:
QDBusMessage msg = QDBusMessage::createMethodCall(
"com.nokia.csd.Call", // --dest
"/com/nokia/csd/call", // destination object path
"com.nokia.csd.Call", // message name (w/o method)
"CreateWith" // method
);
msg << phone_number;
Hi Roman!
Note that you seems to try to call it on system bus insteado of session bus.
Thanks, Daniil.
On Fri, May 28, 2010 at 3:07 PM, Roman Morawek wrote:
> Hello,
>
> I am using the Nokia Qt Beta SDK and try to initiate a voice call on
> Maemo/N900. Since there is no Qt API for this availa