tags:

views:

22

answers:

0

In KDE 4.5 the KIO::Scheduler::scheduleJob is deprecated.

What should I use instead of this Public Member Functions? What is the proper way to schedule the job now?

E.g. until now I have used:

KURL url("http://developer.kde.org/documentation/kde2arch/index.html");
KIO::TransferJob *job = KIO::get(url, true, false);
KIO::Scheduler::scheduleJob(job);