aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/doc_src_qnamespace.qdoc
blob: 6bd0bcea58c649a1aa00f0fb5dd0d0b31f70f476 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

//! [0]
QObject::connect: Cannot queue arguments of type 'MyType'
//! [0]


//! [1]
# An important event
ImportantEventPriority = Qt.HighEventPriority
# A more important event
MoreImportantEventPriority = ImportantEventPriority + 1
# A critical event
CriticalEventPriority = 100 * MoreImportantEventPriority
# Not that important
StatusEventPriority = Qt.LowEventPriority
# These are less important than Status events
IdleProcessingDoneEventPriority = StatusEventPriority - 1
//! [1]