File: porting.qdoc

package info (click to toggle)
kf6-threadweaver 6.20.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,320 kB
  • sloc: cpp: 7,554; python: 33; sh: 13; makefile: 5
file content (14 lines) | stat: -rw-r--r-- 391 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*!
    \page threadweaver-porting.html
    \title Porting to newer versions

    \section1 From KF5 to KF6

    To update your application from KF5 to KF6 ThreadWeaver:

    Collection::stop(JobPointer job) - argument was removed and now it's just Collection::stop()

    1. Replace collection->stop(job) with collection->stop()

    2. Replace sequence->stop(job) with sequence->stop()
*/