View Single Post
rooster13's Avatar
Posts: 319 | Thanked: 221 times | Joined on Jan 2010 @ Finland
#107
Bugger!

Does not work every time .

I am calling the DBus, first open Filemanager and then goto to the desired directory like this:
Code:
QDBusInterface fileManagerd1("com.nokia.HildonDesktop.AppMgr",
                            "/com/nokia/HildonDesktop/AppMgr",
                            "com.nokia.HildonDesktop.AppMgr");
fileManagerd1.call("LaunchApplication", "/usr/bin/ossofilemanager");
QDBusInterface fileManagerd2("com.nokia.osso_filemanager",
                            "/com/nokia/osso_filemanager",
                            "com.nokia.osso_filemanager");
fileManagerd2.call("open_folder", item->data(Qt::UserRole).toString());
I was in the belief that the QDBusInterface.call would return only after it has finished, but that does not seem to be the case. Should I use some other type of call or try to make the main thread sleep for a while? I personnally don't like the sleep idea, but is there any other way?

Last edited by rooster13; 2010-11-28 at 18:30. Reason: Explaining more...