<feed xmlns='http://www.w3.org/2005/Atom'>
<title>qt/qtdeclarative.git/src/quick/items/qquicktextdocument.h, branch old/5.2</title>
<subtitle>Qt Declarative (Quick 2)
</subtitle>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/qt/qtdeclarative.git/'/>
<entry>
<title>Fix license headers of QtQuick sources.</title>
<updated>2013-09-30T06:06:57+00:00</updated>
<author>
<name>Gunnar Sletta</name>
<email>gunnar.sletta@digia.com</email>
</author>
<published>2013-09-30T05:28:31+00:00</published>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/qt/qtdeclarative.git/commit/?id=424052000aa96b9a716efded804bf0317108596b'/>
<id>424052000aa96b9a716efded804bf0317108596b</id>
<content type='text'>
Change-Id: I3750c47640bf21c3567c5fa1c4667e3e2552942e
Reviewed-by: Lars Knoll &lt;lars.knoll@digia.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I3750c47640bf21c3567c5fa1c4667e3e2552942e
Reviewed-by: Lars Knoll &lt;lars.knoll@digia.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix missing QQuickTextDocument docs</title>
<updated>2013-07-02T16:50:52+00:00</updated>
<author>
<name>J-P Nurmi</name>
<email>jpnurmi@digia.com</email>
</author>
<published>2013-07-02T15:25:49+00:00</published>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/qt/qtdeclarative.git/commit/?id=24ab4e7b01bcfbcac23aa6b49d756176c17e46d4'/>
<id>24ab4e7b01bcfbcac23aa6b49d756176c17e46d4</id>
<content type='text'>
It didn't appear in the docs at all. Moving the documentation to .cpp
fixes the problem.

Change-Id: Id9741bc6dab20ba976952143160d3551787fae40
Reviewed-by: Liang Qi &lt;liang.qi@digia.com&gt;
Reviewed-by: Frederik Gladhorn &lt;frederik.gladhorn@digia.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It didn't appear in the docs at all. Moving the documentation to .cpp
fixes the problem.

Change-Id: Id9741bc6dab20ba976952143160d3551787fae40
Reviewed-by: Liang Qi &lt;liang.qi@digia.com&gt;
Reviewed-by: Frederik Gladhorn &lt;frederik.gladhorn@digia.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Doc: Qt Quick: Fix module name format (Pt 1/2)</title>
<updated>2013-04-23T16:29:25+00:00</updated>
<author>
<name>Sze Howe Koh</name>
<email>szehowe.koh@gmail.com</email>
</author>
<published>2013-04-17T15:03:16+00:00</published>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/qt/qtdeclarative.git/commit/?id=59f075df52f5e78b95b360fb0533c2249924e7a7'/>
<id>59f075df52f5e78b95b360fb0533c2249924e7a7</id>
<content type='text'>
Follow the conventions at
http://qt-project.org/wiki/Spelling_Module_Names_in_Qt_Documentation

Attempt to differentiate between the whole module ("Qt Quick") and the
QML import ("QtQuick") by encoding the latter with monospace font. There
are places in the text where both representations are valid.

Change-Id: Id6e157a4191aaa4e23a9cd5c76abfe902fe43d33
Reviewed-by: Jerome Pasion &lt;jerome.pasion@digia.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Follow the conventions at
http://qt-project.org/wiki/Spelling_Module_Names_in_Qt_Documentation

Attempt to differentiate between the whole module ("Qt Quick") and the
QML import ("QtQuick") by encoding the latter with monospace font. There
are places in the text where both representations are valid.

Change-Id: Id6e157a4191aaa4e23a9cd5c76abfe902fe43d33
Reviewed-by: Jerome Pasion &lt;jerome.pasion@digia.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add QQuickTextDocument</title>
<updated>2013-02-19T22:22:33+00:00</updated>
<author>
<name>Frederik Gladhorn</name>
<email>frederik.gladhorn@digia.com</email>
</author>
<published>2013-02-15T17:25:47+00:00</published>
<link rel='alternate' type='text/html' href='https://code.qt.io/cgit/qt/qtdeclarative.git/commit/?id=8e949e741bab0ee084444bb176a57ad61deb0f3f'/>
<id>8e949e741bab0ee084444bb176a57ad61deb0f3f</id>
<content type='text'>
Adding QQuickTextDocument as a way to
access the QTextDocument of QQuickTextEdit from C++.

This makes it possible to use a
QSyntaxHighlighter from C++ without exposing more
than one single qml property in the TextEdit.

Change-Id: If1790b591493adcb0b68aef0c8ca706e00450657
Reviewed-by: Alan Alpert &lt;aalpert@rim.com&gt;
Reviewed-by: Jens Bache-Wiig &lt;jens.bache-wiig@digia.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adding QQuickTextDocument as a way to
access the QTextDocument of QQuickTextEdit from C++.

This makes it possible to use a
QSyntaxHighlighter from C++ without exposing more
than one single qml property in the TextEdit.

Change-Id: If1790b591493adcb0b68aef0c8ca706e00450657
Reviewed-by: Alan Alpert &lt;aalpert@rim.com&gt;
Reviewed-by: Jens Bache-Wiig &lt;jens.bache-wiig@digia.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
