diff options
author | Geir Vattekar <geir.vattekar@nokia.com> | 2011-02-17 12:14:01 (GMT) |
---|---|---|
committer | Geir Vattekar <geir.vattekar@nokia.com> | 2011-02-17 12:14:01 (GMT) |
commit | f5f2eb86b5a9fb4bcc479a4fdba4024e5544ba24 (patch) | |
tree | f0a0cc24f418c40cc03a61e493e7412c5d9a88f9 /doc/src/snippets/code/doc_src_richtext.qdoc | |
parent | 45153a37e4d9e39e8c326a0f33ea17be49bb29e2 (diff) | |
parent | ebd3c48478539c7b2ec76af5c385b690460c3e15 (diff) | |
download | Qt-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_richtext.qdoc')
-rw-r--r-- | doc/src/snippets/code/doc_src_richtext.qdoc | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/doc/src/snippets/code/doc_src_richtext.qdoc b/doc/src/snippets/code/doc_src_richtext.qdoc index e031d77..2b79fdb 100644 --- a/doc/src/snippets/code/doc_src_richtext.qdoc +++ b/doc/src/snippets/code/doc_src_richtext.qdoc @@ -38,53 +38,6 @@ ** ****************************************************************************/ -//! [0] -QTextDocument *newDocument = new QTextDocument; -//! [0] - - -//! [1] -QTextEdit *editor = new QTextEdit; -QTextDocument *editorDocument = editor->document(); -//! [1] - - -//! [2] -QTextEdit *editor = new QTextEdit(parent); -editor->setHtml(aStringContainingHTMLtext); -editor->show(); -//! [2] - - -//! [3] -QTextDocument *document = editor->document(); -//! [3] - - -//! [4] -QTextCursor cursor = editor->textCursor(); -//! [4] - - -//! [5] -editor->setTextCursor(cursor); -//! [5] - - -//! [6] -textEdit.show(); - -textCursor.beginEditBlock(); - -for (int i = 0; i < 1000; ++i) { - textCursor.insertBlock(); - textCursor.insertText(paragraphText.at(i)); -} - -textCursor.endEditBlock(); -//! [6] - - //! [7] <meta http-equiv="Content-Type" content="text/html; charset=EUC-JP" /> //! [7] |