summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/doc_src_qnamespace.qdoc
diff options
context:
space:
mode:
authorGeir Vattekar <geir.vattekar@nokia.com>2011-02-17 12:14:01 (GMT)
committerGeir Vattekar <geir.vattekar@nokia.com>2011-02-17 12:14:01 (GMT)
commitf5f2eb86b5a9fb4bcc479a4fdba4024e5544ba24 (patch)
treef0a0cc24f418c40cc03a61e493e7412c5d9a88f9 /doc/src/snippets/code/doc_src_qnamespace.qdoc
parent45153a37e4d9e39e8c326a0f33ea17be49bb29e2 (diff)
parentebd3c48478539c7b2ec76af5c385b690460c3e15 (diff)
downloadQt-f5f2eb86b5a9fb4bcc479a4fdba4024e5544ba24.zip
Qt-f5f2eb86b5a9fb4bcc479a4fdba4024e5544ba24.tar.gz
Qt-f5f2eb86b5a9fb4bcc479a4fdba4024e5544ba24.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-doc-team into 4.7
Diffstat (limited to 'doc/src/snippets/code/doc_src_qnamespace.qdoc')
-rw-r--r--doc/src/snippets/code/doc_src_qnamespace.qdoc21
1 files changed, 0 insertions, 21 deletions
diff --git a/doc/src/snippets/code/doc_src_qnamespace.qdoc b/doc/src/snippets/code/doc_src_qnamespace.qdoc
index a1bd0b7..6b5ce6a 100644
--- a/doc/src/snippets/code/doc_src_qnamespace.qdoc
+++ b/doc/src/snippets/code/doc_src_qnamespace.qdoc
@@ -41,24 +41,3 @@
//! [0]
QObject::connect: Cannot queue arguments of type 'MyType'
//! [0]
-
-
-//! [1]
-enum CustomEventPriority
-{
- // 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]